We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de4a94a + b2a18a6 commit 9948ff3Copy full SHA for 9948ff3
2 files changed
.github/workflows/ci.yml
@@ -39,6 +39,10 @@ jobs:
39
working-directory: packages/server
40
run: npm run build
41
42
+ - name: Build CLI
43
+ working-directory: packages/cli
44
+ run: npm run build
45
+
46
- name: Build VS Code extension
47
working-directory: packages/vscode-client
48
run: npm run compile
esbuild.js
@@ -68,6 +68,9 @@ async function main() {
68
entryPoints: [path.join(rootDir, "packages/cli/src/main.ts")],
69
outfile: path.join(rootDir, "packages/cli/out/main.js"),
70
external: [],
71
+ alias: {
72
+ "@react-compiler-marker/server": path.join(rootDir, "packages/server"),
73
+ },
74
});
75
contexts.push(cliCtx);
76
}
0 commit comments