Skip to content

Commit ec3c0e7

Browse files
committed
fix(vscode-extension): Resolved parallel clean issue in build
1 parent 231ca31 commit ec3c0e7

File tree

4 files changed

+8
-17
lines changed

4 files changed

+8
-17
lines changed

apps/vscode-extension/project.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"tsConfig": "apps/vscode-extension/tsconfig.extension.json",
1313
"outputPath": "dist/apps/vscode-extension",
1414
"project": "apps/vscode-extension/package.json",
15-
"defaultConfiguration": "development",
15+
"defaultConfiguration": "production",
1616
"external": ["vscode"],
1717
"bundle": true,
1818
"thirdParty": true,
@@ -97,7 +97,7 @@
9797
"tsConfig": "apps/vscode-extension/tsconfig.client.json",
9898
"outputPath": "dist/apps/vscode-extension/client",
9999
"project": "apps/vscode-extension/package.json",
100-
"defaultConfiguration": "development",
100+
"defaultConfiguration": "production",
101101
"external": ["vscode"],
102102
"bundle": true,
103103
"thirdParty": true,
@@ -126,7 +126,7 @@
126126
"executor": "nx:run-commands",
127127
"outputs": ["{options.outputPath}"],
128128
"outputPath": "dist/apps/vscode-extension",
129-
"defaultConfiguration": "development",
129+
"defaultConfiguration": "production",
130130
"options": {
131131
"commands": [
132132
"pnpm nx run vscode-extension:build-backend",
@@ -169,7 +169,6 @@
169169
"executor": "nx:run-commands",
170170
"outputs": ["{options.outputPath}"],
171171
"outputPath": "dist/apps/vscode-extension",
172-
"defaultConfiguration": "development",
173172
"options": {
174173
"commands": ["rimraf dist/packages/vscode-extension"]
175174
}
@@ -178,13 +177,13 @@
178177
"executor": "nx:run-commands",
179178
"outputs": ["{options.outputPath}"],
180179
"outputPath": "dist/apps/vscode-extension",
181-
"defaultConfiguration": "development",
180+
"defaultConfiguration": "production",
182181
"options": {
183182
"commands": [
184183
"pnpm nx run vscode-extension:clean",
185184
"pnpm nx run vscode-extension:build-all"
186185
],
187-
"parallel": true
186+
"parallel": false
188187
},
189188
"configurations": {
190189
"ci": {

packages/vscode/components/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"executor": "@nx/storybook:build",
5050
"outputs": ["{options.outputDir}"],
5151
"options": {
52-
"outputDir": "dist/storybook/ui-webview",
52+
"outputDir": "dist/storybook/vscode/components",
5353
"configDir": "packages/vscode/components/.storybook"
5454
},
5555
"configurations": {
@@ -68,7 +68,7 @@
6868
"executor": "@nx/web:file-server",
6969
"options": {
7070
"buildTarget": "vscode-components:build-storybook",
71-
"staticFilePath": "dist/storybook/ui-webview"
71+
"staticFilePath": "dist/storybook/vscode/components"
7272
},
7373
"configurations": {
7474
"ci": {

socket.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ triggerPaths:
77
- "pnpm-lock.yaml"
88
- "pnpm-workspace.yaml"
99
- "apps/*/package.json"
10-
- "libs/*/package.json"
1110

1211
projectIgnorePaths:
1312
- ".github/"
@@ -18,3 +17,4 @@ projectIgnorePaths:
1817
- "docs/"
1918
- "examples/"
2019
- "test/"
20+
- "packages/language/public/"

storm.config.js

-8
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,5 @@ module.exports = {
1818
warning: "#fcc419",
1919
error: "#990000",
2020
fatal: "#7d1a1a"
21-
},
22-
extensions: {
23-
logging: {
24-
fileName: "storm",
25-
fileExtension: "log",
26-
path: "tmp/storm/logs",
27-
stacktrace: true
28-
}
2921
}
3022
};

0 commit comments

Comments
 (0)