initx 0.0.15 → 0.0.17

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/cli.mjs +1 -1
  2. package/package.json +3 -4
package/dist/cli.mjs CHANGED
@@ -2,7 +2,7 @@ import cac from 'cac';
2
2
  import { log, inquirer } from '@initx-plugin/utils';
3
3
  import { loadPlugins } from '@initx-plugin/core';
4
4
 
5
- const pkgJson = {name:"initx",type:"module",version:"0.0.15",packageManager:"pnpm@9.12.3",description:"A more convenient scripting engine",author:"imba97",license:"MIT",homepage:"https://github.com/initx-collective/initx#readme",repository:{type:"git",url:"git@github.com:initx-collective/initx.git"},bugs:{url:"https://github.com/initx-collective/initx/issues"},keywords:["initx"],main:"dist/index.mjs",module:"dist/index.mjs",types:"dist/index.d.ts",bin:"bin/initx.mjs",files:["dist"],scripts:{stub:"unbuild --stub",build:"unbuild"},dependencies:{"@initx-plugin/core":"workspace:*","@initx-plugin/utils":"workspace:*",cac:"^6.7.14"}};
5
+ const pkgJson = {name:"initx",type:"module",version:"0.0.17",packageManager:"pnpm@9.12.3",description:"A more convenient scripting engine",license:"MIT",homepage:"https://github.com/initx-collective/initx#readme",repository:{type:"git",url:"git@github.com:initx-collective/initx.git"},bugs:{url:"https://github.com/initx-collective/initx/issues"},keywords:["initx"],main:"dist/index.mjs",module:"dist/index.mjs",types:"dist/index.d.ts",bin:"bin/initx.mjs",files:["dist"],scripts:{stub:"unbuild --stub",build:"unbuild"},dependencies:{"@initx-plugin/core":"workspace:*","@initx-plugin/utils":"workspace:*",cac:"^6.7.14"}};
6
6
 
7
7
  const cli = cac("initx");
8
8
  cli.help().command("<something>", "see https://github.com/initx-collective/initx").usage("").option("-v, --version", "Display version number");
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "initx",
3
3
  "type": "module",
4
- "version": "0.0.15",
4
+ "version": "0.0.17",
5
5
  "description": "A more convenient scripting engine",
6
- "author": "imba97",
7
6
  "license": "MIT",
8
7
  "homepage": "https://github.com/initx-collective/initx#readme",
9
8
  "repository": {
@@ -25,8 +24,8 @@
25
24
  ],
26
25
  "dependencies": {
27
26
  "cac": "^6.7.14",
28
- "@initx-plugin/core": "0.0.15",
29
- "@initx-plugin/utils": "0.0.15"
27
+ "@initx-plugin/core": "0.0.17",
28
+ "@initx-plugin/utils": "0.0.17"
30
29
  },
31
30
  "scripts": {
32
31
  "stub": "unbuild --stub",