@nativescript/template-blank-vue 8.0.2 → 8.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,13 +20,17 @@
|
|
|
20
20
|
android:allowBackup="true"
|
|
21
21
|
android:icon="@mipmap/ic_launcher"
|
|
22
22
|
android:label="@string/app_name"
|
|
23
|
-
android:theme="@style/AppTheme"
|
|
23
|
+
android:theme="@style/AppTheme"
|
|
24
|
+
android:hardwareAccelerated="true">
|
|
24
25
|
|
|
25
26
|
<activity
|
|
26
27
|
android:name="com.tns.NativeScriptActivity"
|
|
27
28
|
android:label="@string/title_activity_kimera"
|
|
28
29
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
|
|
29
|
-
android:theme="@style/LaunchScreenTheme"
|
|
30
|
+
android:theme="@style/LaunchScreenTheme"
|
|
31
|
+
android:hardwareAccelerated="true"
|
|
32
|
+
android:launchMode="singleTask"
|
|
33
|
+
android:exported="true">
|
|
30
34
|
|
|
31
35
|
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
|
|
32
36
|
|
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ There is a single blank component located in:
|
|
|
35
35
|
## Get Help
|
|
36
36
|
The NativeScript framework has a vibrant community that can help when you run into problems.
|
|
37
37
|
|
|
38
|
-
Try [joining the NativeScript community
|
|
38
|
+
Try [joining the NativeScript community Discord](https://nativescript.org/discord). The Discord channel is a great place to get help troubleshooting problems, as well as connect with other NativeScript developers.
|
|
39
39
|
|
|
40
40
|
If you have found an issue with this template, please report the problem in the [NativeScript repository](https://github.com/NativeScript/NativeScript/issues).
|
|
41
41
|
|
|
@@ -29,7 +29,6 @@ module.exports = function (hookArgs) {
|
|
|
29
29
|
} catch (error) {
|
|
30
30
|
console.log(error)
|
|
31
31
|
}
|
|
32
|
-
|
|
33
32
|
|
|
34
33
|
function deleteFolderSync(folderPath) {
|
|
35
34
|
if (fs.statSync(folderPath).isDirectory()) {
|
|
@@ -58,7 +57,7 @@ module.exports = function (hookArgs) {
|
|
|
58
57
|
)
|
|
59
58
|
|
|
60
59
|
// init webpack config
|
|
61
|
-
execSync(`node ${binPath} init`, {
|
|
60
|
+
execSync(`node "${binPath}" init`, {
|
|
62
61
|
cwd: appRootFolder,
|
|
63
62
|
stdio: 'inherit',
|
|
64
63
|
})
|
package/jsconfig.json
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@nativescript/template-blank-vue",
|
|
3
3
|
"main": "app/app.js",
|
|
4
4
|
"displayName": "Blank",
|
|
5
|
-
"version": "8.
|
|
5
|
+
"version": "8.1.1",
|
|
6
6
|
"description": "Blank template for NativeScript apps using Vue.",
|
|
7
7
|
"author": "NativeScript Team <oss@nativescript.org>",
|
|
8
8
|
"license": "Apache-2.0",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"app",
|
|
22
22
|
"App_Resources",
|
|
23
|
-
"tools",
|
|
24
23
|
"hooks",
|
|
24
|
+
"tools",
|
|
25
25
|
"!tools/assets",
|
|
26
26
|
".editorconfig",
|
|
27
27
|
"jsconfig.json"
|
|
@@ -40,13 +40,12 @@
|
|
|
40
40
|
"category-general"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@nativescript/core": "~8.
|
|
43
|
+
"@nativescript/core": "~8.1.1",
|
|
44
44
|
"@nativescript/theme": "~3.0.1",
|
|
45
45
|
"nativescript-vue": "~2.9.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@nativescript/webpack": "5.0.0
|
|
49
|
-
"nativescript-vue-template-compiler": "~2.9.0"
|
|
50
|
-
"sass": "^1.32.8"
|
|
48
|
+
"@nativescript/webpack": "~5.0.0",
|
|
49
|
+
"nativescript-vue-template-compiler": "~2.9.0"
|
|
51
50
|
}
|
|
52
51
|
}
|