@adbayb/create 0.0.0-next-1ee86fc → 0.0.0-next-1dfe647

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.
@@ -3,7 +3,7 @@ import { helpers } from 'termost';
3
3
  helpers.exec("pnpm dlx @adbayb/stack create", {
4
4
  hasLiveOutput: true
5
5
  }).catch((error)=>{
6
- helpers.message(`An error occurred while executing the npm initializer \`@adbayb/create\` (error: ${error})`, {
6
+ helpers.message(`An error occurred while executing the npm initializer \`@adbayb/create\` (error: ${String(error)})`, {
7
7
  type: "error"
8
8
  });
9
9
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/create",
3
- "version": "0.0.0-next-1ee86fc",
3
+ "version": "0.0.0-next-1dfe647",
4
4
  "description": "My opinionated scaffolding tool",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -9,12 +9,12 @@
9
9
  "bin",
10
10
  "dist"
11
11
  ],
12
- "bin": "./bin/index.mjs",
12
+ "bin": "./bin/index.js",
13
13
  "type": "module",
14
14
  "exports": {
15
15
  ".": {
16
16
  "source": "./src/index.ts",
17
- "default": "./dist/index.mjs"
17
+ "default": "./dist/index.js"
18
18
  }
19
19
  },
20
20
  "keywords": [
@@ -38,11 +38,11 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "termost": "^0.17.0",
41
- "@adbayb/stack": "^0.0.0-next-1ee86fc"
41
+ "@adbayb/stack": "^0.0.0-next-1dfe647"
42
42
  },
43
43
  "scripts": {
44
44
  "prestart": "pnpm build",
45
- "start": "./bin/index.mjs",
45
+ "start": "./bin/index.js",
46
46
  "build": "quickbundle build",
47
47
  "watch": "quickbundle watch"
48
48
  }
File without changes