@akanjs/cli 0.0.98 → 0.0.99
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.
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2231,11 +2231,11 @@ var Builder = class {
|
|
|
2231
2231
|
engines: { node: ">=22" },
|
|
2232
2232
|
dependencies,
|
|
2233
2233
|
exports: {
|
|
2234
|
+
...this.#pkgJson.exports ?? {},
|
|
2234
2235
|
".": {
|
|
2235
2236
|
require: this.#pkgJson.type === "module" ? "./index.cjs" : "./index.js",
|
|
2236
2237
|
import: this.#pkgJson.type === "module" ? "./index.js" : "./index.mjs"
|
|
2237
|
-
}
|
|
2238
|
-
...this.#pkgJson.exports ?? {}
|
|
2238
|
+
}
|
|
2239
2239
|
}
|
|
2240
2240
|
};
|
|
2241
2241
|
buildResult.outputFiles.map((file) => this.#distExecutor.writeFile(file.path, file.text));
|
package/index.mjs
CHANGED
|
@@ -2489,11 +2489,11 @@ var init_builder = __esm({
|
|
|
2489
2489
|
engines: { node: ">=22" },
|
|
2490
2490
|
dependencies,
|
|
2491
2491
|
exports: {
|
|
2492
|
+
...this.#pkgJson.exports ?? {},
|
|
2492
2493
|
".": {
|
|
2493
2494
|
require: this.#pkgJson.type === "module" ? "./index.cjs" : "./index.js",
|
|
2494
2495
|
import: this.#pkgJson.type === "module" ? "./index.js" : "./index.mjs"
|
|
2495
|
-
}
|
|
2496
|
-
...this.#pkgJson.exports ?? {}
|
|
2496
|
+
}
|
|
2497
2497
|
}
|
|
2498
2498
|
};
|
|
2499
2499
|
buildResult.outputFiles.map((file) => this.#distExecutor.writeFile(file.path, file.text));
|