Update all packages with ncu -u

And fix another bug: require(...).default returns the string content
of the file.
This commit is contained in:
roschaefer 2019-08-15 16:07:16 +02:00
parent 57fe905a96
commit e6352cc6fb
3 changed files with 1719 additions and 544 deletions

View File

@ -21,31 +21,31 @@
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "~7.2.2",
"@babel/core": "~7.5.5",
"@babel/plugin-syntax-dynamic-import": "~7.2.0",
"@babel/standalone": "~7.3.3",
"@vue/cli-plugin-babel": "~3.4.0",
"@vue/cli-plugin-eslint": "~3.4.0",
"@vue/cli-plugin-unit-jest": "~3.4.1",
"@vue/cli-service": "~3.4.0",
"@vue/eslint-config-prettier": "~4.0.1",
"@babel/standalone": "~7.5.5",
"@vue/cli-plugin-babel": "~3.10.0",
"@vue/cli-plugin-eslint": "~3.10.0",
"@vue/cli-plugin-unit-jest": "~3.10.0",
"@vue/cli-service": "~3.10.0",
"@vue/eslint-config-prettier": "~5.0.0",
"@vue/test-utils": "~1.0.0-beta.29",
"async-validator": "~1.10.1",
"async-validator": "~3.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "~24.1.0",
"babel-jest": "~24.8.0",
"babel-plugin-transform-require-context": "~0.1.1",
"cheerio": "~1.0.0-rc.2",
"clipboard-copy": "~2.0.1",
"clipboard-copy": "~3.1.0",
"clone-deep": "~4.0.1",
"codemirror": "~5.44.0",
"codemirror": "~5.48.2",
"cross-env": "~5.2.0",
"dot-prop": "~4.2.0",
"lodash": "~4.17.11",
"markdown-it": "~8.4.2",
"dot-prop": "~5.1.0",
"lodash": "~4.17.15",
"markdown-it": "~9.1.0",
"markdown-it-abbr": "~1.0.4",
"markdown-it-deflist": "~2.0.3",
"markdown-it-emoji": "~1.4.0",
"markdown-it-footnote": "~3.0.1",
"markdown-it-footnote": "~3.0.2",
"markdown-it-ins": "~2.0.0",
"markdown-it-katex": "~2.0.3",
"markdown-it-mark": "~2.0.0",
@ -54,19 +54,19 @@
"markdown-it-task-lists": "~2.1.1",
"node-sass": "^4.12.0",
"npm-run-all": "~4.1.5",
"onchange": "~5.2.0",
"portal-vue": "~1.5.1",
"raw-loader": "~1.0.0",
"sass-loader": "~7.1.0",
"theo": "~8.1.2",
"onchange": "~6.0.0",
"portal-vue": "~2.1.6",
"raw-loader": "~3.1.0",
"sass-loader": "~7.2.0",
"theo": "~8.1.4",
"vue-click-outside": "~1.0.7",
"vue-docgen-api": "^3.20.0",
"vue-router": "~3.0.2",
"vue-router": "~3.1.2",
"vue-svg-loader": "~0.12.0",
"vue-template-compiler": "^2.6.10",
"vuep": "git+https://github.com/visualjerk/vuep.git#fix-iframe-firefox",
"webpack-bundle-analyzer": "~3.0.4",
"webpack-merge-and-include-globally": "~2.1.14"
"webpack-bundle-analyzer": "~3.4.1",
"webpack-merge-and-include-globally": "~2.1.16"
},
"authors": [
"appinteractive",

View File

@ -61,7 +61,7 @@ export default {
}
try {
const mdFile = require(`raw-loader!../docs/${name}.md`)
const mdFile = require(`raw-loader!../docs/${name}.md`).default
this.description = mdFile
} catch (err) {
this.description = null

2215
yarn.lock

File diff suppressed because it is too large Load Diff