chore: bump marked
This commit is contained in:
parent
8cbfe092cf
commit
0c06c748a5
@ -74,7 +74,7 @@
|
|||||||
"jest": "^27.1.0",
|
"jest": "^27.1.0",
|
||||||
"lint-staged": "^10.2.10",
|
"lint-staged": "^10.2.10",
|
||||||
"lodash": "^4.17.15",
|
"lodash": "^4.17.15",
|
||||||
"marked": "^0.7.0",
|
"marked": "^4.0.10",
|
||||||
"minimist": "^1.2.0",
|
"minimist": "^1.2.0",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
"prettier": "^2.3.1",
|
"prettier": "^2.3.1",
|
||||||
|
@ -14,7 +14,7 @@ Vue.createApp({
|
|||||||
}),
|
}),
|
||||||
computed: {
|
computed: {
|
||||||
compiledMarkdown() {
|
compiledMarkdown() {
|
||||||
return marked(this.input, { sanitize: true })
|
return marked.marked(this.input, { sanitize: true })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -13,7 +13,7 @@ const { ref, computed } = Vue
|
|||||||
Vue.createApp({
|
Vue.createApp({
|
||||||
setup() {
|
setup() {
|
||||||
const input = ref('# hello')
|
const input = ref('# hello')
|
||||||
const output = computed(() => marked(input.value, { sanitize: true }))
|
const output = computed(() => marked.marked(input.value, { sanitize: true }))
|
||||||
const update = _.debounce(e => { input.value = e.target.value }, 50)
|
const update = _.debounce(e => { input.value = e.target.value }, 50)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -31,7 +31,7 @@ importers:
|
|||||||
jest: ^27.1.0
|
jest: ^27.1.0
|
||||||
lint-staged: ^10.2.10
|
lint-staged: ^10.2.10
|
||||||
lodash: ^4.17.15
|
lodash: ^4.17.15
|
||||||
marked: ^0.7.0
|
marked: ^4.0.10
|
||||||
minimist: ^1.2.0
|
minimist: ^1.2.0
|
||||||
npm-run-all: ^4.1.5
|
npm-run-all: ^4.1.5
|
||||||
prettier: ^2.3.1
|
prettier: ^2.3.1
|
||||||
@ -79,7 +79,7 @@ importers:
|
|||||||
jest: 27.4.4
|
jest: 27.4.4
|
||||||
lint-staged: 10.5.4
|
lint-staged: 10.5.4
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
marked: 0.7.0
|
marked: 4.0.10
|
||||||
minimist: 1.2.5
|
minimist: 1.2.5
|
||||||
npm-run-all: 4.1.5
|
npm-run-all: 4.1.5
|
||||||
prettier: 2.5.1
|
prettier: 2.5.1
|
||||||
@ -4978,9 +4978,9 @@ packages:
|
|||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/marked/0.7.0:
|
/marked/4.0.10:
|
||||||
resolution: {integrity: sha512-c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg==}
|
resolution: {integrity: sha512-+QvuFj0nGgO970fySghXGmuw+Fd0gD2x3+MqCWLIPf5oxdv1Ka6b2q+z9RP01P/IaKPMEramy+7cNy/Lw8c3hw==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>= 12'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user