initx 0.0.12 → 0.0.13
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/README.md +13 -2
- package/dist/cli.mjs +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
<h1 align="center">
|
|
1
|
+
<h1 align="center">initx ⚙️</h1>
|
|
2
2
|
|
|
3
|
-
<p align="center"><code>initx</code>
|
|
3
|
+
<p align="center"><code>initx</code> A more convenient scripting engine</p>
|
|
4
4
|
|
|
5
5
|
<pre align="center">npx <b>initx <something></b></pre>
|
|
6
6
|
|
|
7
|
+
# Plugins
|
|
8
|
+
|
|
7
9
|
## Git
|
|
8
10
|
|
|
9
11
|
```bash
|
|
@@ -92,3 +94,12 @@ Copy some text to clipboard
|
|
|
92
94
|
```bash
|
|
93
95
|
npx initx cp ssh
|
|
94
96
|
```
|
|
97
|
+
|
|
98
|
+
# Acknowledgement
|
|
99
|
+
|
|
100
|
+
- [cac](https://github.com/cacjs/cac)
|
|
101
|
+
- [execa](https://github.com/sindresorhus/execa)
|
|
102
|
+
- [importx](https://github.com/antfu-collective/importx)
|
|
103
|
+
- [inquirer](https://github.com/SBoudrias/Inquirer.js)
|
|
104
|
+
- [picocolors](https://github.com/alexeyraspopov/picocolors)
|
|
105
|
+
- [which](https://github.com/npm/node-which)
|
package/dist/cli.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import inquirer from 'inquirer';
|
|
|
3
3
|
import { log } from '@initx-plugin/utils';
|
|
4
4
|
import { loadPlugins } from '@initx-plugin/core';
|
|
5
5
|
|
|
6
|
-
const pkgJson = {name:"initx",type:"module",version:"0.0.
|
|
6
|
+
const pkgJson = {name:"initx",type:"module",version:"0.0.13",packageManager:"pnpm@9.12.2",description:"A more convenient scripting engine",author:"imba97",license:"MIT",homepage:"https://github.com/imba97/initx#readme",repository:{type:"git",url:"git+ssh://git@github.com/imba97/initx"},bugs:{url:"https://github.com/imba97/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",inquirer:"^12.0.0"}};
|
|
7
7
|
|
|
8
8
|
const cli = cac("initx");
|
|
9
9
|
cli.help().command("<something>", "see https://github.com/imba97/initx").usage("").option("-v, --version", "Display version number");
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "initx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "
|
|
4
|
+
"version": "0.0.13",
|
|
5
|
+
"description": "A more convenient scripting engine",
|
|
6
6
|
"author": "imba97",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"homepage": "https://github.com/imba97/initx#readme",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"cac": "^6.7.14",
|
|
28
28
|
"inquirer": "^12.0.0",
|
|
29
|
-
"@initx-plugin/core": "0.0.
|
|
30
|
-
"@initx-plugin/utils": "0.0.
|
|
29
|
+
"@initx-plugin/core": "0.0.13",
|
|
30
|
+
"@initx-plugin/utils": "0.0.13"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"stub": "unbuild --stub",
|