Skip to content

Commit b57ec7a

Browse files
committed
Merge branch 'development'
2 parents 3384c42 + 97672ba commit b57ec7a

File tree

6 files changed

+37
-14
lines changed

6 files changed

+37
-14
lines changed

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22

33
/dist
44
/coverage
5+
6+
/.nx/cache

nx.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,39 @@
44
"default": {
55
"runner": "@nrwl/nx-cloud",
66
"options": {
7-
"cacheableOperations": ["build", "lint", "test", "e2e", "watch"]
7+
"cacheableOperations": [
8+
"build",
9+
"lint",
10+
"test",
11+
"e2e",
12+
"watch"
13+
]
814
}
915
},
1016
"defaultBase": "main",
1117
"targetDefaults": {
1218
"test": {
13-
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"]
19+
"inputs": [
20+
"default",
21+
"^default",
22+
"{workspaceRoot}/jest.preset.js"
23+
]
1424
},
1525
"lint": {
16-
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
26+
"inputs": [
27+
"default",
28+
"{workspaceRoot}/.eslintrc.json"
29+
]
1730
},
1831
"build": {
19-
"dependsOn": ["^build"]
32+
"dependsOn": [
33+
"^build"
34+
]
2035
},
2136
"watch": {
22-
"dependsOn": ["^watch"]
37+
"dependsOn": [
38+
"^watch"
39+
]
2340
}
2441
},
2542
"workspaceLayout": {

package-lock.json

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@
9393
"@nrwl/js": "19.1.1",
9494
"@nrwl/linter": "19.1.1",
9595
"@nrwl/node": "19.1.1",
96-
"@nrwl/nx-cloud": "19.0.0",
9796
"@nrwl/web": "19.1.1",
9897
"@nrwl/webpack": "19.1.1",
9998
"@nrwl/workspace": "19.1.1",
@@ -126,7 +125,8 @@
126125
"ts-loader": "^9.4.2",
127126
"ts-node": "10.9.1",
128127
"tsconfig-paths-webpack-plugin": "^4.0.0",
129-
"typescript": "^4.9.4"
128+
"typescript": "^4.9.4",
129+
"nx-cloud": "19.0.0"
130130
},
131131
"scripts": {
132132
"prepare": "husky install"

packages/shared/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "packages/shared/src",
55
"projectType": "library",
6+
"tags": [],
67
"targets": {
78
"build": {
89
"executor": "@nrwl/js:tsc",
@@ -43,6 +44,5 @@
4344
}
4445
}
4546
}
46-
},
47-
"tags": []
47+
}
4848
}

packages/syntaxes/project.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,25 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "packages/syntaxes/src",
55
"projectType": "library",
6+
"tags": [],
67
"targets": {
78
"build": {
89
"executor": "nx:run-commands",
10+
"inputs": ["{projectRoot}/**/*"],
11+
"outputs": ["{workspaceRoot}/dist/packages/syntaxes"],
912
"options": {
1013
"commands": [
1114
"npx mkdirp \"dist/packages/syntaxes\"",
1215
"npx js-yaml packages/syntaxes/src/ccini.tmLanguage.yaml > dist/packages/syntaxes/ccini.tmLanguage.json",
1316
"cp packages/syntaxes/src/snippets.jsonc dist/packages/syntaxes/snippets.json",
1417
"cp packages/syntaxes/src/language-configuration.json dist/packages/syntaxes/language-configuration.json"
1518
],
16-
"outputPath": "dist/packages/syntaxes"
19+
"parallel": false
1720
},
18-
"outputs": ["{options.outputPath}"],
1921
"defaultConfiguration": "production",
2022
"configurations": {
2123
"production": {}
2224
}
2325
}
24-
},
25-
"tags": []
26+
}
2627
}

0 commit comments

Comments
 (0)