@opensumi/ide-dev-tool 3.7.2-next-1739848467.0 → 3.7.2-next-1739945875.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/webpack.js +14 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensumi/ide-dev-tool",
3
- "version": "3.7.2-next-1739848467.0",
3
+ "version": "3.7.2-next-1739945875.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git@github.com:opensumi/core.git"
@@ -38,5 +38,5 @@
38
38
  "webpack-cli": "^5.1.4",
39
39
  "webpack-merge": "^5.10.0"
40
40
  },
41
- "gitHead": "305bfb1bdf3000e2296de450972eb24f5ebbba89"
41
+ "gitHead": "e491fa42318a9b37cfedf17b812c905c000c9aff"
42
42
  }
package/src/webpack.js CHANGED
@@ -212,9 +212,9 @@ exports.createWebpackConfig = function (dir, entry, extraConfig) {
212
212
  'process.env.OTHER_EXTENSION_DIR': JSON.stringify(path.join(__dirname, '../../../other')),
213
213
  'process.env.EXTENSION_WORKER_HOST': JSON.stringify(
214
214
  process.env.EXTENSION_WORKER_HOST ||
215
- `http://${HOST}:8080/assets` +
216
- withSlash +
217
- path.resolve(__dirname, '../../../packages/extension/lib/worker-host.js'),
215
+ `http://${HOST}:8080/assets` +
216
+ withSlash +
217
+ path.resolve(__dirname, '../../../packages/extension/lib/worker-host.js'),
218
218
  ),
219
219
  'process.env.WS_PATH': JSON.stringify(process.env.WS_PATH || `ws://${HOST}:8000`),
220
220
  'process.env.WEBVIEW_HOST': JSON.stringify(process.env.WEBVIEW_HOST || HOST),
@@ -222,18 +222,18 @@ exports.createWebpackConfig = function (dir, entry, extraConfig) {
222
222
  'process.env.HOST': JSON.stringify(process.env.HOST),
223
223
  }),
224
224
  !process.env.SKIP_TS_CHECKER &&
225
- new ForkTsCheckerWebpackPlugin({
226
- typescript: {
227
- diagnosticOptions: {
228
- syntactic: true,
229
- },
230
- configFile: tsConfigPath,
225
+ new ForkTsCheckerWebpackPlugin({
226
+ typescript: {
227
+ diagnosticOptions: {
228
+ syntactic: true,
231
229
  },
232
- issue: {
233
- include: (issue) => issue.file.includes('src/packages/'),
234
- exclude: (issue) => issue.file.includes('__test__'),
235
- },
236
- }),
230
+ configFile: tsConfigPath,
231
+ },
232
+ issue: {
233
+ include: (issue) => issue.file.includes('src/packages/'),
234
+ exclude: (issue) => issue.file.includes('__test__'),
235
+ },
236
+ }),
237
237
  new NodePolyfillPlugin({
238
238
  includeAliases: ['process', 'Buffer'],
239
239
  }),