Skip to content

Commit 92cb910

Browse files
build: partially re-enable Nx cache (#1478)
1 parent 17fd0ed commit 92cb910

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

nx.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,15 @@
1616
"targetDefaults": {
1717
"build": {
1818
"dependsOn": ["^build"],
19-
"inputs": ["production", "^production"],
20-
"cache": false
19+
"inputs": ["production", "^production"]
2120
},
2221
"test": {
2322
"dependsOn": ["^build"],
24-
"cache": false
23+
"cache": true
2524
},
2625
"e2e": {
2726
"dependsOn": ["^build"],
28-
"cache": false
27+
"cache": true
2928
},
3029
"serve": {
3130
"dependsOn": ["^build"]
@@ -68,6 +67,6 @@
6867
"projectSpecificFiles": []
6968
},
7069
"nxCloudAccessToken": "NDRkYzdkYmMtNDI3NS00MDI0LWFkMGQtMmI0Zjc2MTY2YzU0fHJlYWQtb25seQ==",
71-
"defaultBase": "main",
70+
"defaultBase": "beta",
7271
"useLegacyCache": true
7372
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"start": "nx serve",
1212
"build": "nx run-many --target build --all --parallel=1",
1313
"e2e": "nx run-many --target e2e --projects create-analog-e2e,analog-app-e2e-cypress --parallel=1 --exclude analog-app-e2e-playwright",
14-
"test": "nx run-many --target test --all",
14+
"test": "nx run-many --target test",
1515
"build:vite-ci": "npm run build",
1616
"test:vite-ci": "nx run-many --target test --all",
1717
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",

packages/nx-plugin/project.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"outputPath": "node_modules/@analogjs/platform/src/lib/nx-plugin",
1313
"main": "packages/nx-plugin/src/index.ts",
1414
"tsConfig": "packages/nx-plugin/tsconfig.lib.json",
15+
"clean": true,
1516
"assets": [
1617
"packages/nx-plugin/*.md",
1718
{

0 commit comments

Comments
 (0)