Skip to content

Commit

Permalink
fix: exclude jsonc-parser from apex bundling
Browse files Browse the repository at this point in the history
@W-17751384@
exclude jsonc-parser from apex ext bundle
  • Loading branch information
peternhale committed Feb 5, 2025
1 parent ce127af commit f34ef14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-apex/esbuild.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const sharedConfig = {
bundle: true,
format: 'cjs',
platform: 'node',
external: ['vscode', 'applicationinsights', 'shelljs', 'jsonpath'],
external: ['vscode', 'applicationinsights', 'shelljs', 'jsonpath', 'jsonc-parser'],
keepNames: true,
plugins: [esbuildPluginPino({ transports: ['pino-pretty'] })],
minify: true,
Expand Down
3 changes: 2 additions & 1 deletion packages/salesforcedx-vscode-apex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
"dependencies": {
"applicationinsights": "1.0.7",
"shelljs": "0.8.5",
"jsonpath": "1.1.1"
"jsonpath": "1.1.1",
"jsonc-parser": "2.2.1"
},
"devDependencies": {}
}
Expand Down

0 comments on commit f34ef14

Please sign in to comment.