Skip to content

Commit 3b0b941

Browse files
Copilotjoaomoreno
andcommitted
Switch from transpile-client-esbuild to transpile-client
The double esbuild processing (transpile + bundle) was causing export declaration errors. Using TypeScript compiler for transpilation produces output that's compatible with esbuild bundler. This fixes errors like: "ExtHostCommands" is not declared in this file Co-authored-by: joaomoreno <22350+joaomoreno@users.noreply.github.com>
1 parent d54238f commit 3b0b941

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/oss-build-fast.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
112112

113113
- name: Transpile client & extensions
114-
run: npm run gulp transpile-client-esbuild transpile-extensions
114+
run: npm run gulp transpile-client transpile-extensions
115115
env:
116116
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
117117

@@ -208,7 +208,7 @@ jobs:
208208
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
209209

210210
- name: Transpile client & extensions
211-
run: npm run gulp transpile-client-esbuild transpile-extensions
211+
run: npm run gulp transpile-client transpile-extensions
212212
env:
213213
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
214214

@@ -316,7 +316,7 @@ jobs:
316316

317317
- name: Transpile client & extensions
318318
shell: pwsh
319-
run: npm run gulp transpile-client-esbuild transpile-extensions
319+
run: npm run gulp transpile-client transpile-extensions
320320
env:
321321
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
322322

0 commit comments

Comments
 (0)