@tsparticles/cli-create 4.0.0-beta.12 → 4.0.0-beta.16
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/CHANGELOG.md +12 -0
- package/README.md +20 -1
- package/package.json +13 -11
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# [4.0.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @tsparticles/cli-create
|
|
9
|
+
|
|
10
|
+
# [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @tsparticles/cli-create
|
package/README.md
CHANGED
|
@@ -18,4 +18,23 @@ yarn add -D @tsparticles/cli-create
|
|
|
18
18
|
tsparticles-create [options]
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
The wrapper automatically prepends `create` when omitted, so these are equivalent:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
tsparticles-create plugin my-plugin
|
|
25
|
+
tsparticles-create create plugin my-plugin
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Supported subcommands:
|
|
29
|
+
|
|
30
|
+
- `bundle`
|
|
31
|
+
- `effect`
|
|
32
|
+
- `interaction`
|
|
33
|
+
- `palette`
|
|
34
|
+
- `path`
|
|
35
|
+
- `plugin`
|
|
36
|
+
- `preset`
|
|
37
|
+
- `shape`
|
|
38
|
+
- `updater`
|
|
39
|
+
|
|
40
|
+
For full examples, see `cli/commands/create/README.md`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/cli-create",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.16",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,19 +16,21 @@
|
|
|
16
16
|
"directory": "cli/packages/cli-create"
|
|
17
17
|
},
|
|
18
18
|
"prettier": "@tsparticles/prettier-config",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"prettify:ci:readme": "prettier --check ./README.md",
|
|
21
|
+
"prettify:readme": "prettier --write ./README.md",
|
|
22
|
+
"build": "pnpm run prettify:readme",
|
|
23
|
+
"build:ci": "pnpm run prettify:ci:readme",
|
|
24
|
+
"prepack": "pnpm run build"
|
|
25
|
+
},
|
|
19
26
|
"dependencies": {
|
|
20
|
-
"
|
|
21
|
-
"
|
|
27
|
+
"@tsparticles/cli-command-create": "^4.0.0-beta.16",
|
|
28
|
+
"commander": "^14.0.3"
|
|
22
29
|
},
|
|
23
30
|
"devDependencies": {
|
|
24
|
-
"@tsparticles/prettier-config": "^4.0.0-beta.
|
|
31
|
+
"@tsparticles/prettier-config": "^4.0.0-beta.16"
|
|
25
32
|
},
|
|
26
33
|
"description": "tsParticles CLI - Create command only",
|
|
27
34
|
"author": "Matteo Bruni <matteo.bruni@me.com>",
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
"prettify:readme": "prettier --write ./README.md",
|
|
31
|
-
"build": "pnpm run prettify:readme",
|
|
32
|
-
"build:ci": "pnpm run prettify:ci:readme"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
+
"gitHead": "8ac678c4da53ea2b6a9a33aaa40f5141e2a7d513"
|
|
36
|
+
}
|