Skip to content

Commit 432ebc6

Browse files
committedJan 8, 2023
chore: upgrade workspace
1 parent a6a1914 commit 432ebc6

File tree

7 files changed

+50
-44
lines changed

7 files changed

+50
-44
lines changed
 

‎apps/demo-angular/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"@triniwiz/nativescript-masonkit": "file:../../dist/packages/nativescript-masonkit"
66
},
77
"devDependencies": {
8-
"@nativescript/android": "~8.3.0",
9-
"@nativescript/ios": "~8.3.0"
8+
"@nativescript/android": "dev",
9+
"@nativescript/ios": "dev"
1010
}
1111
}

‎apps/demo-angular/project.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"name": "demo-angular",
23
"$schema": "../../node_modules/nx/schemas/project-schema.json",
34
"sourceRoot": "apps/demo-angular/src",
45
"projectType": "application",

‎apps/demo/project.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"name": "demo",
23
"$schema": "../../node_modules/nx/schemas/project-schema.json",
34
"sourceRoot": "apps/demo/src",
45
"projectType": "application",

‎nx.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,6 @@
33
"affected": {
44
"defaultBase": "master"
55
},
6-
"implicitDependencies": {
7-
"workspace.json": "*",
8-
"package.json": {
9-
"dependencies": "*",
10-
"devDependencies": "*"
11-
},
12-
"tsconfig.base.json": "*",
13-
"tslint.json": "*",
14-
"nx.json": "*"
15-
},
166
"workspaceLayout": {
177
"appsDir": "apps",
188
"libsDir": "packages"
@@ -28,5 +18,18 @@
2818
}
2919
}
3020
},
31-
"$schema": "./node_modules/nx/schemas/nx-schema.json"
21+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
22+
"namedInputs": {
23+
"default": ["{projectRoot}/**/*", "sharedGlobals"],
24+
"sharedGlobals": ["{workspaceRoot}/workspace.json", "{workspaceRoot}/tsconfig.base.json", "{workspaceRoot}/tslint.json", "{workspaceRoot}/nx.json"],
25+
"production": ["default", "!{projectRoot}/.eslintrc.json"]
26+
},
27+
"targetDefaults": {
28+
"build": {
29+
"inputs": ["production", "^production"]
30+
},
31+
"lint": {
32+
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
33+
}
34+
}
3235
}

‎package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,29 @@
1616
},
1717
"private": true,
1818
"devDependencies": {
19-
"@angular/animations": "^14.2.0",
20-
"@angular/common": "^14.2.0",
21-
"@angular/compiler": "^14.2.0",
22-
"@angular/compiler-cli": "^14.2.0",
23-
"@angular/core": "^14.2.0",
24-
"@angular/forms": "^14.2.0",
25-
"@angular/platform-browser": "^14.2.0",
26-
"@angular/platform-browser-dynamic": "^14.2.0",
27-
"@angular/router": "^14.2.0",
28-
"@nativescript/angular": "^14.2.0",
29-
"@nativescript/core": "~8.3.0",
30-
"@nativescript/plugin-tools": "4.1.1",
31-
"@nativescript/types": "~8.3.0",
19+
"@angular/animations": "^15.0.0",
20+
"@angular/common": "^15.0.0",
21+
"@angular/compiler": "^15.0.0",
22+
"@angular/compiler-cli": "^15.0.0",
23+
"@angular/core": "^15.0.0",
24+
"@angular/forms": "^15.0.0",
25+
"@angular/platform-browser": "^15.0.0",
26+
"@angular/platform-browser-dynamic": "^15.0.0",
27+
"@angular/router": "^15.0.0",
28+
"@nativescript/angular": "^15.0.0",
29+
"@nativescript/core": "~8.4.0",
30+
"@nativescript/plugin-tools": "5.0.3",
31+
"@nativescript/types": "~8.4.0",
3232
"@nativescript/webpack": "~5.0.5",
33-
"@ngtools/webpack": "^14.2.0",
33+
"@ngtools/webpack": "^15.0.0",
3434
"husky": "^8.0.0",
3535
"nativescript-vue": "~2.9.0",
3636
"nativescript-vue-template-compiler": "~2.9.0",
37-
"ng-packagr": "^14.2.0",
37+
"ng-packagr": "^15.0.0",
3838
"rxjs": "~7.5.0",
39-
"typescript": "~4.7.3",
39+
"typescript": "~4.8.0",
4040
"zone.js": "~0.11.1",
41-
"@angular-devkit/build-angular": "^14.2.0",
41+
"@angular-devkit/build-angular": "^15.0.0",
4242
"nativescript-permissions": "1.3.11"
4343
},
4444
"lint-staged": {

‎packages/nativescript-masonkit/project.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"name": "nativescript-masonkit",
23
"$schema": "../../node_modules/nx/schemas/project-schema.json",
34
"projectType": "library",
45
"sourceRoot": "packages/nativescript-masonkit",
@@ -29,12 +30,12 @@
2930
}
3031
},
3132
"build.all": {
32-
"executor": "@nrwl/workspace:run-commands",
33+
"executor": "nx:run-commands",
3334
"options": {
3435
"commands": ["node tools/scripts/build-finish.ts nativescript-masonkit"],
3536
"parallel": false
3637
},
37-
"outputs": ["dist/packages/nativescript-masonkit"],
38+
"outputs": ["{workspaceRoot}/dist/packages/nativescript-masonkit"],
3839
"dependsOn": [
3940
{
4041
"target": "build.all",
@@ -47,43 +48,43 @@
4748
]
4849
},
4950
"build.native.ios.framework.release": {
50-
"outputs": ["dist/packages"],
51+
"outputs": ["{workspaceRoot}/dist/packages"],
5152
"options": {
5253
"commands": ["sh masonkit-build-ios-framework.sh"],
5354
"cwd": "tools/scripts",
5455
"parallel": false
5556
},
56-
"executor": "@nrwl/workspace:run-commands"
57+
"executor": "nx:run-commands"
5758
},
5859
"build.native.ios.framework.debug": {
59-
"outputs": ["dist/packages"],
60+
"outputs": ["{workspaceRoot}/dist/packages"],
6061
"options": {
6162
"commands": ["sh masonkit-build-ios-framework.sh"],
6263
"cwd": "tools/scripts",
6364
"parallel": false
6465
},
65-
"executor": "@nrwl/workspace:run-commands"
66+
"executor": "nx:run-commands"
6667
},
6768
"build.native.ios.debug": {
68-
"outputs": ["dist/packages"],
69+
"outputs": ["{workspaceRoot}/dist/packages"],
6970
"options": {
7071
"commands": ["sh masonkit-build-ios-native.sh"],
7172
"cwd": "tools/scripts",
7273
"parallel": false
7374
},
74-
"executor": "@nrwl/workspace:run-commands"
75+
"executor": "nx:run-commands"
7576
},
7677
"build.native.ios.release": {
77-
"outputs": ["dist/packages"],
78+
"outputs": ["{workspaceRoot}/dist/packages"],
7879
"options": {
7980
"commands": ["sh masonkit-build-ios-native.sh --release"],
8081
"cwd": "tools/scripts",
8182
"parallel": false
8283
},
83-
"executor": "@nrwl/workspace:run-commands"
84+
"executor": "nx:run-commands"
8485
},
8586
"focus": {
86-
"executor": "@nrwl/workspace:run-commands",
87+
"executor": "nx:run-commands",
8788
"options": {
8889
"commands": ["nx g @nativescript/plugin-tools:focus-packages nativescript-masonkit"],
8990
"parallel": false

‎tsconfig.base.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"emitDecoratorMetadata": true,
88
"experimentalDecorators": true,
99
"noEmitHelpers": true,
10-
"target": "es2017",
11-
"module": "esnext",
12-
"lib": ["es2017", "dom"],
10+
"target": "ES2020",
11+
"module": "ESNext",
12+
"lib": ["ESNext", "dom"],
1313
"skipLibCheck": true,
1414
"skipDefaultLibCheck": true,
1515
"baseUrl": ".",

0 commit comments

Comments
 (0)
Please sign in to comment.