@unpackjs/core 0.26.0 → 0.26.1

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.
@@ -61,7 +61,7 @@ async function loadConfig({
61
61
  outDir: "dist",
62
62
  minify: (0, import_shared.isProd)(),
63
63
  sourcemap: (0, import_shared.isProd)() ? false : "eval-cheap-module-source-map",
64
- thread: true,
64
+ parallel: true,
65
65
  filenameHash: true
66
66
  },
67
67
  server: {
@@ -43,7 +43,7 @@ async function loadConfig({
43
43
  outDir: "dist",
44
44
  minify: isProd(),
45
45
  sourcemap: isProd() ? false : "eval-cheap-module-source-map",
46
- thread: true,
46
+ parallel: true,
47
47
  filenameHash: true
48
48
  },
49
49
  server: {
package/dist/index.cjs CHANGED
@@ -31,7 +31,7 @@ async function createService({ command, root, cliOptions }) {
31
31
  if (!npm_execpath || npm_execpath.includes("npx-cli") || npm_execpath.includes(".bun") || npm_execpath.includes("yarn")) {
32
32
  console.log();
33
33
  }
34
- import_shared.logger.greet(`Unpack v${"0.26.0"}
34
+ import_shared.logger.greet(`Unpack v${"0.26.1"}
35
35
  `);
36
36
  if (command === "build") {
37
37
  (0, import_shared.setNodeEnv)(cliOptions.watch ? "development" : "production");
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ async function createService({ command, root, cliOptions }) {
21
21
  if (!npm_execpath || npm_execpath.includes("npx-cli") || npm_execpath.includes(".bun") || npm_execpath.includes("yarn")) {
22
22
  console.log();
23
23
  }
24
- logger.greet(`Unpack v${"0.26.0"}
24
+ logger.greet(`Unpack v${"0.26.1"}
25
25
  `);
26
26
  if (command === "build") {
27
27
  setNodeEnv(cliOptions.watch ? "development" : "production");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unpackjs/core",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {
@@ -23,9 +23,9 @@
23
23
  "access": "public"
24
24
  },
25
25
  "dependencies": {
26
- "@unpackjs/bundler-rspack": "^0.26.0",
27
- "@unpackjs/bundler-webpack": "^0.26.0",
28
- "@unpackjs/shared": "^0.26.0"
26
+ "@unpackjs/bundler-rspack": "^0.26.1",
27
+ "@unpackjs/bundler-webpack": "^0.26.1",
28
+ "@unpackjs/shared": "^0.26.1"
29
29
  },
30
30
  "scripts": {
31
31
  "dev": "modern build --watch",