Skip to content

Commit

Permalink
Fix ignored resource in backend bundling (#12681)
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew committed Jul 5, 2023
1 parent becfd76 commit cb1ccfc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ const ignoredResources = new Set();
if (process.platform !== 'win32') {
ignoredResources.add('@vscode/windows-ca-certs');
ignoredResources.add('@vscode/windows-ca-certs/build/Release/crypt32.node');
}
const nativePlugin = new NativeWebpackPlugin({
Expand Down
2 changes: 1 addition & 1 deletion examples/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"coverage:clean": "rimraf .nyc_output && rimraf coverage",
"coverage:report": "nyc report --reporter=html",
"rebuild": "theia rebuild:browser --cacheRoot ../..",
"start": "yarn -s rebuild && theia start --plugins=local-dir:../../plugins --ovsx-router-config=../ovsx-router-config.json",
"start": "theia start --plugins=local-dir:../../plugins --ovsx-router-config=../ovsx-router-config.json",
"start:debug": "yarn -s start --log-level=debug",
"start:watch": "concurrently --kill-others -n tsc,bundle,run -c red,yellow,green \"tsc -b -w --preserveWatchOutput\" \"yarn -s watch:bundle\" \"yarn -s start\"",
"test": "theia test . --plugins=local-dir:../../plugins --test-spec=../api-tests/**/*.spec.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"compile": "tsc -b",
"lint": "theiaext lint",
"rebuild": "theia rebuild:electron --cacheRoot ../..",
"start": "yarn -s rebuild && theia start --plugins=local-dir:../../plugins --ovsx-router-config=../ovsx-router-config.json",
"start": "theia start --plugins=local-dir:../../plugins --ovsx-router-config=../ovsx-router-config.json",
"start:debug": "yarn -s start --log-level=debug --remote-debugging-port=9222",
"start:watch": "concurrently --kill-others -n tsc,bundle,run -c red,yellow,green \"tsc -b -w --preserveWatchOutput\" \"yarn -s watch:bundle\" \"yarn -s start\"",
"test": "electron-mocha --timeout 60000 \"./lib/test/**/*.espec.js\"",
Expand Down
2 changes: 1 addition & 1 deletion scripts/performance/base-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"bundle": "theia build --mode development",
"compile": "tsc -b",
"rebuild": "theia rebuild:{{app}} --cacheRoot ../..",
"start": "yarn -s rebuild && THEIA_CONFIG_DIR=./theia-config-dir theia start --plugins=local-dir:../../noPlugins --log-level=fatal"
"start": "THEIA_CONFIG_DIR=./theia-config-dir theia start --plugins=local-dir:../../noPlugins --log-level=fatal"
},
"devDependencies": {
"@theia/cli": "{{version}}"
Expand Down

0 comments on commit cb1ccfc

Please sign in to comment.