@akanjs/cli 0.0.117 → 0.0.118

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/cjs/index.js CHANGED
@@ -2195,11 +2195,6 @@ var Builder = class {
2195
2195
  platform: this.#pkgJson.esbuild?.platform,
2196
2196
  format,
2197
2197
  outdir: `${this.#distExecutor.cwdPath}/${format}`,
2198
- // outdir: this.#distExecutor.cwdPath,
2199
- // outExtension: { ".js": format === "cjs" ? ".js" : ".esm.js" },
2200
- // format === "cjs"
2201
- // ? { ".js": this.#pkgJson.type === "module" ? ".cjs" : ".js" }
2202
- // : { ".js": this.#pkgJson.type === "module" ? ".js" : ".mjs" },
2203
2198
  logLevel: "error"
2204
2199
  };
2205
2200
  }
@@ -2240,8 +2235,6 @@ var Builder = class {
2240
2235
  require: "./cjs/index.js",
2241
2236
  import: "./esm/index.js",
2242
2237
  types: "./index.d.ts"
2243
- // require: this.#pkgJson.type === "module" ? "./index.cjs" : "./index.js",
2244
- // import: this.#pkgJson.type === "module" ? "./index.js" : "./index.mjs",
2245
2238
  }
2246
2239
  }
2247
2240
  };
@@ -2394,9 +2387,9 @@ var import_open = __toESM(require("open"));
2394
2387
  var import_ora2 = __toESM(require("ora"));
2395
2388
  var import_path4 = __toESM(require("path"));
2396
2389
  var vite = __toESM(require("vite"));
2390
+ var import_vite_plugin_commonjs = __toESM(require("vite-plugin-commonjs"));
2397
2391
  var import_vite_plugin_node_polyfills = require("vite-plugin-node-polyfills");
2398
2392
  var import_vite_tsconfig_paths = __toESM(require("vite-tsconfig-paths"));
2399
- var import_vite_plugin_commonjs = __toESM(require("vite-plugin-commonjs"));
2400
2393
 
2401
2394
  // pkgs/@akanjs/cli/src/module/module.prompt.ts
2402
2395
  var frameworkDescription = `
package/esm/index.js CHANGED
@@ -2182,11 +2182,6 @@ var Builder = class {
2182
2182
  platform: this.#pkgJson.esbuild?.platform,
2183
2183
  format,
2184
2184
  outdir: `${this.#distExecutor.cwdPath}/${format}`,
2185
- // outdir: this.#distExecutor.cwdPath,
2186
- // outExtension: { ".js": format === "cjs" ? ".js" : ".esm.js" },
2187
- // format === "cjs"
2188
- // ? { ".js": this.#pkgJson.type === "module" ? ".cjs" : ".js" }
2189
- // : { ".js": this.#pkgJson.type === "module" ? ".js" : ".mjs" },
2190
2185
  logLevel: "error"
2191
2186
  };
2192
2187
  }
@@ -2227,8 +2222,6 @@ var Builder = class {
2227
2222
  require: "./cjs/index.js",
2228
2223
  import: "./esm/index.js",
2229
2224
  types: "./index.d.ts"
2230
- // require: this.#pkgJson.type === "module" ? "./index.cjs" : "./index.js",
2231
- // import: this.#pkgJson.type === "module" ? "./index.js" : "./index.mjs",
2232
2225
  }
2233
2226
  }
2234
2227
  };
@@ -2381,9 +2374,9 @@ import openBrowser from "open";
2381
2374
  import ora2 from "ora";
2382
2375
  import path5 from "path";
2383
2376
  import * as vite from "vite";
2377
+ import commonjs from "vite-plugin-commonjs";
2384
2378
  import { nodePolyfills } from "vite-plugin-node-polyfills";
2385
2379
  import tsconfigPaths from "vite-tsconfig-paths";
2386
- import commonjs from "vite-plugin-commonjs";
2387
2380
 
2388
2381
  // pkgs/@akanjs/cli/src/module/module.prompt.ts
2389
2382
  var frameworkDescription = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sourceType": "module",
3
3
  "name": "@akanjs/cli",
4
- "version": "0.0.117",
4
+ "version": "0.0.118",
5
5
  "bin": {
6
6
  "akan": "cjs/index.js"
7
7
  },
@@ -12,16 +12,23 @@
12
12
  "devDependencies": {
13
13
  "@types/react": "18.3.1",
14
14
  "@types/react-dom": "18.3.1",
15
+ "crypto-browserify": "^3.12.1",
15
16
  "eslint": "^9.19.0",
17
+ "https-browserify": "^1.0.0",
16
18
  "jest": "^29.7.0",
17
19
  "jiti": "^2.4.2",
20
+ "os-browserify": "^0.3.0",
18
21
  "prettier": "^3.5.3",
22
+ "process": "^0.11.10",
23
+ "stream-browserify": "^3.0.0",
24
+ "stream-http": "^3.2.0",
19
25
  "ts-jest": "^29.3.4",
20
26
  "url-polyfill": "^1.1.13",
21
27
  "vite": "^6.3.5",
22
28
  "vite-plugin-commonjs": "^0.10.4",
23
29
  "vite-plugin-node-polyfills": "^0.23.0",
24
30
  "vite-tsconfig-paths": "^5.1.4",
31
+ "vm-browserify": "^1.1.2",
25
32
  },
26
33
  "packageManager": "pnpm@10.11.0",
27
34
  "engines": {