8000 chore: bump deps · lixiang241/nativescript-vue@c5935d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit c5935d9

Browse files
committed
chore: bump deps
1 parent 5156f20 commit c5935d9

File tree

4 files changed

+941
-775
lines changed

4 files changed

+941
-775
lines changed

build/config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ const genConfig = (name) => {
7373
file: opts.dest,
7474
format: opts.format || 'cjs',
7575
banner: opts.banner,
76-
name: opts.moduleName
76+
name: opts.moduleName,
77+
exports: 'auto'
7778
},
7879
// https://github.com/rollup/rollup/issues/2271#issuecomment-455129819
7980
onwarn(warning) {
@@ -99,6 +100,7 @@ const genConfig = (name) => {
99100
},
100101
plugins: [
101102
replace({
103+
preventAssignment: true,
102104
delimiters: ['', ''],
103105
// Patch devtools flush calls to use the global hook
104106
// rather than the devtools variable
@@ -111,6 +113,7 @@ const genConfig = (name) => {
111113
'_c("div")': '_c("NativeContentView")'
112114
}),
113115
replace({
116+
preventAssignment: true,
114117
__WEEX__: false,
115118
__VERSION__: VueVersion,
116119
// 'process.env.NODE_ENV': "'development'",

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -53,33 +53,33 @@
5353
}
5454
},
5555
"devDependencies": {
56-
"@babel/core": "^7.12.7",
57-
"@babel/plugin-transform-flow-strip-types": "7.12.1",
58-
"@babel/preset-env": "7.12.7",
59-
"@commitlint/cli": "11.0.0",
60-
"@commitlint/config-conventional": "11.0.0",
61-
"@nativescript/core": "7.0.13",
62-
"@rollup/plugin-alias": "3.1.1",
56+
"@babel/core": "^7.13.10",
57+
"@babel/plugin-transform-flow-strip-types": "7.13.0",
58+
"@babel/preset-env": "7.13.10",
59+
"@commitlint/cli": "12.0.1",
60+
"@commitlint/config-conventional": "12.0.1",
61+
"@nativescript/core": "7.3.0",
62+
"@rollup/plugin-alias": "3.1.2",
6363
"@rollup/plugin-buble": "0.21.3",
64-
"@rollup/plugin-commonjs": "16.0.0",
65-
"@rollup/plugin-node-resolve": "10.0.0",
66-
"@rollup/plugin-replace": "2.3.4",
64+
"@rollup/plugin-commonjs": "17.1.0",
65+
"@rollup/plugin-node-resolve": "11.2.0",
66+
"@rollup/plugin-replace": "2.4.1",
6767
"babel-jest": "26.6.3",
6868
"chalk": "4.1.0",
69-
"commitizen": "4.2.2",
69+
"commitizen": "4.2.3",
7070
"conventional-changelog-cli": "2.1.1",
7171
"cz-conventional-changelog": "3.3.0",
7272
"husky": "4.3.0",
73-
"inquirer": "7.3.3",
73+
"inquirer": "8.0.0",
7474
"jest": "26.6.3",
7575
"jest-junit": "12.0.0",
76-
"lint-staged": "10.5.1",
77-
"patch-package": "^6.2.2",
78-
"prettier": "2.2.0",
79-
"rollup": "^2.33.3",
76+
"lint-staged": "10.5.4",
77+
"patch-package": "^6.4.6",
78+
"prettier": "2.2.1",
79+
"rollup": "^2.41.0",
8080
"rollup-plugin-flow-no-whitespace": "1.0.0",
8181
"rollup-plugin-resolve-aliases": "0.3.0",
82-
"semver": "7.3.2",
82+
"semver": "7.3.4",
8383
"set-value": "3.0.2",
8484
"vue": "2.6.12"
8585
},

samples/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "MIT",
88
"readme": "NativeScriptVue Samples Application",
99
"dependencies": {
10-
"@nativescript/core": "7.0.13",
10+
"@nativescript/core": "7.3.0",
1111
"@vue/devtools": "5.3.3",
1212
"lorem-ipsum": "2.0.3",
1313
"nativescript-socketio": "3.3.1",
@@ -16,13 +16,13 @@
1616
"vuex": "3.5.1"
1717
},
1818
"devDependencies": {
19-
"@babel/core": "7.12.7",
20-
"@babel/preset-env": "7.12.7",
19+
"@babel/core": "7.13.10",
20+
"@babel/preset-env": "7.13.10",
2121
"@nativescript/android": "7.0.1",
22-
"@nativescript/ios": "7.0.6",
23-
"@nativescript/webpack": "3.0.8",
24-
"babel-loader": "8.2.1",
22+
"@nativescript/ios": "7.2.0",
23+
"@nativescript/webpack": "3.0.9",
24+
"babel-loader": "8.2.2",
2525
"nativescript-vue-template-compiler": "file:../packages/nativescript-vue-template-compiler",
26-
"vue-loader": "15.9.5"
26+
"vue-loader": "15.9.6"
2727
}
2828
}

0 commit comments

Comments
 (0)
0