Skip to content

Commit 01aaec8

Browse files
committed
chore: cleanup
1 parent 98af1e3 commit 01aaec8

File tree

3 files changed

+13
-24
lines changed

3 files changed

+13
-24
lines changed

apps/demo-angular/project.json

+6-10
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@
2121
}
2222
]
2323
},
24-
"ios": {
25-
"executor": "@nativescript/nx:build",
24+
"debug": {
25+
"executor": "@nativescript/nx:debug",
2626
"options": {
27-
"platform": "ios",
2827
"noHmr": true
2928
},
3029
"dependsOn": [
@@ -34,10 +33,9 @@
3433
}
3534
]
3635
},
37-
"android": {
38-
"executor": "@nativescript/nx:build",
36+
"prepare": {
37+
"executor": "@nativescript/nx:prepare",
3938
"options": {
40-
"platform": "android",
4139
"noHmr": true
4240
},
4341
"dependsOn": [
@@ -48,10 +46,8 @@
4846
]
4947
},
5048
"clean": {
51-
"executor": "@nativescript/nx:build",
52-
"options": {
53-
"clean": true
54-
}
49+
"executor": "@nativescript/nx:clean",
50+
"options": {}
5551
},
5652
"lint": {
5753
"executor": "@nx/linter:eslint",

apps/demo/project.json

+6-10
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@
2121
}
2222
]
2323
},
24-
"ios": {
25-
"executor": "@nativescript/nx:build",
24+
"debug": {
25+
"executor": "@nativescript/nx:debug",
2626
"options": {
27-
"platform": "ios",
2827
"noHmr": true
2928
},
3029
"dependsOn": [
@@ -34,10 +33,9 @@
3433
}
3534
]
3635
},
37-
"android": {
38-
"executor": "@nativescript/nx:build",
36+
"prepare": {
37+
"executor": "@nativescript/nx:prepare",
3938
"options": {
40-
"platform": "android",
4139
"noHmr": true
4240
},
4341
"dependsOn": [
@@ -48,10 +46,8 @@
4846
]
4947
},
5048
"clean": {
51-
"executor": "@nativescript/nx:build",
52-
"options": {
53-
"clean": true
54-
}
49+
"executor": "@nativescript/nx:clean",
50+
"options": {}
5551
},
5652
"lint": {
5753
"executor": "@nx/linter:eslint",

apps/demo/src/main-page.xml

+1-4
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,18 @@
2727
<Button text="google-signin" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
2828
<Button text="haptics" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
2929
<Button text="imagepicker" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
30-
3130
<Button text="ios-security" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
3231
<Button text="iqkeyboardmanager" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
33-
3432
<Button text="local-notifications" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
3533
<Button text="localize" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
3634
<Button text="pdf" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
3735
<Button text="picker" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
36+
<Button text="secure-storage" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
3837
<Button text="shared-notification-delegate" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
3938
<Button text="social-share" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
40-
4139
<Button text="theme-switcher" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
4240
<Button text="twitter" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
4341
<Button text="zip" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
44-
<Button text="secure-storage" tap="{{ viewDemo }}" class="btn btn-primary view-demo"/>
4542
</StackLayout>
4643
</ScrollView>
4744
</StackLayout>

0 commit comments

Comments
 (0)