Skip to content
This repository was archived by the owner on Dec 5, 2022. It is now read-only.

Commit 82a2046

Browse files
authored
Merge pull request #1 from rigor789/master
tweak externals, add splash screen
2 parents fd00133 + 31462d2 commit 82a2046

32 files changed

+3
-3
lines changed

template/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"watch:ios": "PLATFORM=ios npm run watch"
1414
},
1515
"dependencies": {
16-
"nativescript-vue": "1.0.0",
17-
"tns-core-modules": "3.4.0"
16+
"nativescript-vue": "^1.2.0",
17+
"tns-core-modules": "3.4.1"
1818
},
1919
"devDependencies": {
2020
"babel-core": "^6.26.0",
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

template/webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module.exports = platform => {
7373
],
7474
},
7575
externals (context, request, callback) {
76-
if (context.indexOf('tns-core-modules') !== -1 || /^(ui|application)/i.test(request)) {
76+
if (context.indexOf('tns-core-modules') !== -1 || /^(tns-core-modules)/i.test(request)) {
7777
return callback(null, 'commonjs ' + request);
7878
}
7979
callback();

0 commit comments

Comments
 (0)