|
36 | 36 | "testVue2": "cd test && cross-env VUE_VERSION=2 yarn run start",
|
37 | 37 | "tests": "jest --runInBand \"tests/.*\\.test.js\"",
|
38 | 38 | "dev": "webpack --mode=development --config ./build/webpack.config.js --progress --watch",
|
39 |
| - "build": "rimraf ./dist/ && cross-env-shell webpack --mode=production --config ./build/webpack.config.js --progress --env targetsBrowsers=\\\"$npm_package_browserslist\\\"", |
| 39 | + "build-web": "rimraf ./dist/ && cross-env-shell webpack --mode=production --config ./build/webpack.config.js --progress --env targetsBrowsers=\\\"$npm_package_browserslist\\\"", |
40 | 40 | "build-node": "rollup --config ./build/rollup.config-node.mjs",
|
41 | 41 | "docs": "cross-env-shell \"node build/evalHtmlComments.js README.md $npm_package_version && node build/evalHtmlComments.js docs/examples.md $npm_package_version && typedoc --plugin typedoc-plugin-markdown --mode file --tsconfig ./build/tsconfig.json --inputFiles ./src/index.ts --out ./docs/api --readme none --stripInternal --namedAnchors true\"",
|
42 | 42 | "pushDocs": "yarn run docs && git add docs/ && git add README.md && cross-env-shell git commit -m \\\"chore(docs): v$npm_package_version API docs & examples \\\" docs",
|
43 | 43 | "release": "standard-version --header \"\""
|
44 | 44 | },
|
45 | 45 | "standard-version": {
|
46 | 46 | "scripts": {
|
47 |
| - "postbump": "yarn run build && yarn run tests && yarn run pushDocs" |
| 47 | + "postbump": "yarn run build-web && yarn run build-node && yarn run tests && yarn run pushDocs" |
48 | 48 | }
|
49 | 49 | },
|
50 | 50 | "devDependencies": {
|
51 |
| - "@babel/code-frame": "^7.16.7", |
52 |
| - "@babel/core": "^7.16.12", |
53 |
| - "@babel/generator": "^7.16.8", |
54 |
| - "@babel/parser": "^7.16.12", |
55 |
| - "@babel/plugin-proposal-dynamic-import": "^7.16.7", |
56 |
| - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", |
57 |
| - "@babel/plugin-proposal-optional-chaining": "^7.16.7", |
58 |
| - "@babel/plugin-transform-arrow-functions": "^7.16.7", |
59 |
| - "@babel/plugin-transform-modules-commonjs": "^7.16.8", |
60 | 51 | "@babel/plugin-transform-runtime": "^7.16.10",
|
61 |
| - "@babel/plugin-transform-typescript": "^7.23.6", |
62 | 52 | "@babel/preset-env": "7.23",
|
63 | 53 | "@rollup/plugin-alias": "^5.1.0",
|
64 | 54 | "@rollup/plugin-replace": "^5.0.5",
|
|
68 | 58 | "@types/babel__core": "^7.1.18",
|
69 | 59 | "@types/babel__traverse": "^7.14.0",
|
70 | 60 | "@types/spark-md5": "^3.0.2",
|
71 |
| - "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", |
72 |
| - "@vue/babel-plugin-jsx": "1.1", |
73 |
| - "@vue/babel-preset-jsx": "^1.2.4", |
74 |
| - "@vue/compiler-dom": "^3.4.13", |
75 |
| - "@vue/compiler-sfc": "^3.4.13", |
76 |
| - "@vue/component-compiler-utils": "^3.3.0", |
77 |
| - "@vue/shared": "^3.4.13", |
78 | 61 | "assert": "^2.0.0",
|
79 | 62 | "babel-loader": "^9.1.3",
|
80 | 63 | "babel-plugin-polyfill-corejs3": "^0.8.7",
|
|
99 | 82 | "safe-buffer": "^5.2.1",
|
100 | 83 | "semver": "^7.3.5",
|
101 | 84 | "source-map-explorer": "2.5",
|
102 |
| - "spark-md5": "^3.0.2", |
103 | 85 | "standard-version": "^9.3.2",
|
104 | 86 | "stream-browserify": "^3.0.0",
|
105 | 87 | "terser-webpack-plugin": "^5.3.0",
|
|
112 | 94 | "util": "^0.12.4",
|
113 | 95 | "vm-browserify": "^1.1.2",
|
114 | 96 | "vue": "^3.4.13",
|
115 |
| - "vue-template-compiler": "^2.7.16", |
116 | 97 | "vue2": "npm:vue@^2.7.16",
|
117 | 98 | "webpack": "^5.89.0",
|
118 | 99 | "webpack-bundle-analyzer": "^4.5.0",
|
119 | 100 | "webpack-cli": "^5.1.4"
|
| 101 | + }, |
| 102 | + "dependencies": { |
| 103 | + "@babel/code-frame": "^7.16.7", |
| 104 | + "@babel/core": "^7.16.12", |
| 105 | + "@babel/generator": "^7.16.8", |
| 106 | + "@babel/parser": "^7.16.12", |
| 107 | + "@babel/plugin-proposal-dynamic-import": "^7.16.7", |
| 108 | + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", |
| 109 | + "@babel/plugin-proposal-optional-chaining": "^7.16.7", |
| 110 | + "@babel/plugin-transform-arrow-functions": "^7.16.7", |
| 111 | + "@babel/plugin-transform-modules-commonjs": "^7.16.8", |
| 112 | + "@babel/plugin-transform-typescript": "^7.23.6", |
| 113 | + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", |
| 114 | + "@vue/babel-plugin-jsx": "1.1", |
| 115 | + "@vue/babel-preset-jsx": "^1.2.4", |
| 116 | + "@vue/compiler-dom": "^3.4.13", |
| 117 | + "@vue/compiler-sfc": "^3.4.13", |
| 118 | + "@vue/component-compiler-utils": "^3.3.0", |
| 119 | + "@vue/shared": "^3.4.13", |
| 120 | + "spark-md5": "^3.0.2", |
| 121 | + "vue-template-compiler": "^2.7.16" |
120 | 122 | }
|
121 | 123 | }
|
0 commit comments