create-packkit 0.1.1 → 0.1.2
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 +6 -6
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -13,20 +13,20 @@ Most scaffolders lock you into one stack, one language, and the terminal. Packki
|
|
|
13
13
|
```sh
|
|
14
14
|
# interactive wizard
|
|
15
15
|
npm create packkit@latest
|
|
16
|
-
# or
|
|
17
|
-
npx packkit
|
|
16
|
+
# or with npx
|
|
17
|
+
npx create-packkit
|
|
18
18
|
|
|
19
19
|
# skip the wizard with a preset
|
|
20
|
-
npx packkit ts-lib my-lib
|
|
21
|
-
npx packkit cli my-tool
|
|
22
|
-
npx packkit --preset full my-pkg --pm pnpm
|
|
20
|
+
npx create-packkit ts-lib my-lib
|
|
21
|
+
npx create-packkit cli my-tool
|
|
22
|
+
npx create-packkit --preset full my-pkg --pm pnpm
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
Then `cd`, and you already have a working project — `build`, `test`, and `lint` all pass out of the box.
|
|
26
26
|
|
|
27
27
|
## Or configure it on the web
|
|
28
28
|
|
|
29
|
-
No install needed: **[danmat.github.io/create-packkit](https://danmat.github.io/create-packkit/)** — tick the options, preview the file tree, and **download a zip** (or copy the equivalent `npx packkit` command). Everything runs in your browser.
|
|
29
|
+
No install needed: **[danmat.github.io/create-packkit](https://danmat.github.io/create-packkit/)** — tick the options, preview the file tree, and **download a zip** (or copy the equivalent `npx create-packkit` command). Everything runs in your browser.
|
|
30
30
|
|
|
31
31
|
## What you can pick
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-packkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Highly configurable scaffolder for modern npm packages and CLIs — pick your stack (TS/JS, bundler, tests, linter, CI, releases) from a CLI or a web configurator.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"create-packkit": "bin/cli.js"
|
|
8
|
-
"packkit": "bin/cli.js"
|
|
7
|
+
"create-packkit": "bin/cli.js"
|
|
9
8
|
},
|
|
10
9
|
"exports": {
|
|
11
10
|
".": "./src/core/index.js",
|