@adbayb/create 2.35.0-next-c14b4b7 → 2.36.0-next-d491b30

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.
Files changed (2) hide show
  1. package/dist/index.js +10 -7
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -1,11 +1,14 @@
1
- import { helpers } from 'termost';
1
+ import { helpers } from "termost";
2
2
 
3
+ //#region src/index.ts
4
+ /**
5
+ * @file Package proxy using `@adbayb/stack` to benefit from NPM initializer `npm init @adbayb`.
6
+ * @see {@link https://docs.npmjs.com/cli/v9/commands/npm-init}
7
+ */
3
8
  try {
4
- await helpers.exec("pnpm dlx @adbayb/stack create", {
5
- hasLiveOutput: true
6
- });
9
+ await helpers.exec("pnpm dlx @adbayb/stack create", { hasLiveOutput: true });
7
10
  } catch (error) {
8
- helpers.message(`An error occurred while executing the npm initializer \`@adbayb/create\` (error: ${String(error)})`, {
9
- type: "error"
10
- });
11
+ helpers.message(`An error occurred while executing the npm initializer \`@adbayb/create\` (error: ${String(error)})`, { type: "error" });
11
12
  }
13
+
14
+ //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/create",
3
- "version": "2.35.0-next-c14b4b7",
3
+ "version": "2.36.0-next-d491b30",
4
4
  "description": "My opinionated scaffolding tool",
5
5
  "keywords": [
6
6
  "setup",
@@ -30,11 +30,11 @@
30
30
  "dist"
31
31
  ],
32
32
  "dependencies": {
33
- "termost": "^1.9.0",
34
- "@adbayb/stack": "^2.35.0-next-c14b4b7"
33
+ "termost": "^1.9.1",
34
+ "@adbayb/stack": "^2.36.0-next-d491b30"
35
35
  },
36
36
  "devDependencies": {
37
- "quickbundle": "2.16.0"
37
+ "quickbundle": "3.0.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public",