wirejs-scripts 3.0.7 → 3.0.9

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/bin.js +2 -1
  2. package/package.json +2 -2
package/bin.js CHANGED
@@ -370,10 +370,11 @@ async function compile(watch = false) {
370
370
  const prebuild = await esbuild.context({
371
371
  entryPoints: [`${CWD}/src/**/*.ts`],
372
372
  outdir: `${CWD}/pre-dist`,
373
- bundle: true,
373
+ bundle: false,
374
374
  format: 'esm',
375
375
  conditions: ['wirejs:client'],
376
376
  });
377
+ await prebuild.rebuild();
377
378
  prebuild.watch();
378
379
  webpack({
379
380
  ...getWebpackConfig(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-scripts",
3
- "version": "3.0.7",
3
+ "version": "3.0.9",
4
4
  "description": "Basic build and start commands for wirejs apps",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,6 +33,6 @@
33
33
  "style-loader": "^2.0.0",
34
34
  "webpack": "^5.97.1",
35
35
  "wirejs-dom": "^1.0.38",
36
- "wirejs-resources": "^0.1.9"
36
+ "wirejs-resources": "^0.1.11"
37
37
  }
38
38
  }