@whatalo/cli-kit 1.0.0 → 1.0.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.
@@ -220,6 +220,8 @@ async function loadManifest(dir) {
220
220
  format: "esm",
221
221
  outfile,
222
222
  platform: "node",
223
+ // Resolve imports from the user's project directory (node_modules)
224
+ absWorkingDir: dir,
223
225
  // Silence esbuild output — errors are caught below
224
226
  logLevel: "silent"
225
227
  });
@@ -176,6 +176,8 @@ async function loadManifest(dir) {
176
176
  format: "esm",
177
177
  outfile,
178
178
  platform: "node",
179
+ // Resolve imports from the user's project directory (node_modules)
180
+ absWorkingDir: dir,
179
181
  // Silence esbuild output — errors are caught below
180
182
  logLevel: "silent"
181
183
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whatalo/cli-kit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Shared CLI utilities for Whatalo plugin development tools",
@@ -71,14 +71,6 @@
71
71
  "README.md",
72
72
  "LICENSE"
73
73
  ],
74
- "scripts": {
75
- "build": "tsup",
76
- "dev": "tsup --watch",
77
- "test": "vitest run",
78
- "test:watch": "vitest",
79
- "type-check": "tsc --noEmit",
80
- "clean": "rm -rf dist"
81
- },
82
74
  "dependencies": {
83
75
  "@iarna/toml": "^2.2.5",
84
76
  "chalk": "^5.4.1",
@@ -91,5 +83,13 @@
91
83
  "tsup": "^8.5.0",
92
84
  "typescript": "^5.9.3",
93
85
  "vitest": "^3.2.4"
86
+ },
87
+ "scripts": {
88
+ "build": "tsup",
89
+ "dev": "tsup --watch",
90
+ "test": "vitest run",
91
+ "test:watch": "vitest",
92
+ "type-check": "tsc --noEmit",
93
+ "clean": "rm -rf dist"
94
94
  }
95
- }
95
+ }