Skip to content

Commit ab32bd9

Browse files
fix(patch): cherry-pick c43500c to release/v0.29.2-pr-19502 to patch version v0.29.2 and create version 0.29.3 (google-gemini#19522)
Co-authored-by: Jacob Richman <jacob314@gmail.com>
1 parent a57e079 commit ab32bd9

4 files changed

Lines changed: 11 additions & 1 deletion

File tree

esbuild.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ const baseConfig = {
7575
write: true,
7676
};
7777

78+
const commonAliases = {
79+
punycode: 'punycode/',
80+
};
81+
7882
const cliConfig = {
7983
...baseConfig,
8084
banner: {
@@ -88,6 +92,7 @@ const cliConfig = {
8892
plugins: createWasmPlugins(),
8993
alias: {
9094
'is-in-ci': path.resolve(__dirname, 'packages/cli/src/patches/is-in-ci.ts'),
95+
...commonAliases,
9196
},
9297
metafile: true,
9398
};
@@ -103,6 +108,7 @@ const a2aServerConfig = {
103108
'process.env.CLI_VERSION': JSON.stringify(pkg.version),
104109
},
105110
plugins: createWasmPlugins(),
111+
alias: commonAliases,
106112
};
107113

108114
Promise.allSettled([

package-lock.json

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

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
"ink": "npm:@jrichman/ink@6.4.8",
130130
"latest-version": "^9.0.0",
131131
"proper-lockfile": "^4.1.2",
132+
"punycode": "^2.3.1",
132133
"simple-git": "^3.28.0"
133134
},
134135
"optionalDependencies": {

packages/vscode-ide-companion/esbuild.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ async function main() {
4949
define: {
5050
'import.meta.url': 'import_meta.url',
5151
},
52+
alias: {
53+
punycode: 'punycode/',
54+
},
5255
plugins: [
5356
/* add to the end of plugins array */
5457
esbuildProblemMatcherPlugin,

0 commit comments

Comments
 (0)