Skip to content

Commit fa30c81

Browse files
committed
build: ensure watch targets build dependencies as required
1 parent 6a44787 commit fa30c81

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

nx.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
},
2020
"build": {
2121
"dependsOn": ["^build"]
22+
},
23+
"watch": {
24+
"dependsOn": ["^build"]
2225
}
2326
},
2427
"workspaceLayout": {
@@ -36,5 +39,10 @@
3639
"linter": "eslint",
3740
"unitTestRunner": "jest"
3841
}
42+
},
43+
"pluginsConfig": {
44+
"@nrwl/js": {
45+
"analyzeSourceFiles": true
46+
}
3947
}
4048
}

packages/client/src/extension.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export function activate(context: ExtensionContext): void {
3535
documentSelector: [{ scheme: 'file', language: 'ccini' }],
3636
revealOutputChannelOn: RevealOutputChannelOn.Error,
3737
progressOnInitialization: true,
38+
3839
};
3940

4041
let client: LanguageClient;

0 commit comments

Comments
 (0)