@unpackjs/core 1.5.1 → 1.5.3

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.
@@ -103,8 +103,7 @@ function resolveConfigPath(root, customConfig) {
103
103
  if (import_node_fs.default.existsSync(customConfigPath)) {
104
104
  return customConfigPath;
105
105
  }
106
- import_shared.logger.warn(`Cannot find config file: ${customConfigPath}
107
- `);
106
+ import_shared.logger.warn(`Could not find config file: ${customConfigPath}`);
108
107
  }
109
108
  const CONFIG_FILES = [
110
109
  "unpack.config.ts",
@@ -87,8 +87,7 @@ function resolveConfigPath(root, customConfig) {
87
87
  if (fs.existsSync(customConfigPath)) {
88
88
  return customConfigPath;
89
89
  }
90
- logger.warn(`Cannot find config file: ${customConfigPath}
91
- `);
90
+ logger.warn(`Could not find config file: ${customConfigPath}`);
92
91
  }
93
92
  const CONFIG_FILES = [
94
93
  "unpack.config.ts",
package/dist/index.cjs CHANGED
@@ -36,7 +36,7 @@ async function createService({ command, cliOptions }) {
36
36
  }
37
37
  if (!(0, import_shared.isDevServer)()) {
38
38
  console.log(
39
- import_shared.colors.rainbow(`unpack v${"1.5.1"}`),
39
+ import_shared.colors.rainbow(`unpack v${"1.5.3"}`),
40
40
  import_shared.colors.green(`building for ${(0, import_shared.isDev)() ? "development" : "production"}...`)
41
41
  );
42
42
  }
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ async function createService({ command, cliOptions }) {
28
28
  }
29
29
  if (!isDevServer()) {
30
30
  console.log(
31
- colors.rainbow(`unpack v${"1.5.1"}`),
31
+ colors.rainbow(`unpack v${"1.5.3"}`),
32
32
  colors.green(`building for ${isDev() ? "development" : "production"}...`)
33
33
  );
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unpackjs/core",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {
@@ -23,10 +23,10 @@
23
23
  "access": "public"
24
24
  },
25
25
  "dependencies": {
26
- "@unpackjs/bundler-rspack": "^1.5.1",
27
- "@unpackjs/bundler-webpack": "^1.5.1",
28
- "@unpackjs/shared": "^1.5.1",
29
- "@unpackjs/plugin-react": "^1.5.1"
26
+ "@unpackjs/bundler-rspack": "^1.5.3",
27
+ "@unpackjs/bundler-webpack": "^1.5.3",
28
+ "@unpackjs/shared": "^1.5.3",
29
+ "@unpackjs/plugin-react": "^1.5.3"
30
30
  },
31
31
  "scripts": {
32
32
  "dev": "modern build --watch",