@tsparticles/cli-create 4.0.0-beta.12 → 4.0.0-beta.15

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 (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +20 -1
  3. package/package.json +13 -11
package/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
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.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09)
7
+
8
+ **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
- For usage details, see the command package docs under `cli/commands/create`.
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.12",
3
+ "version": "4.0.0-beta.15",
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
- "commander": "^14.0.3",
21
- "@tsparticles/cli-command-create": "^4.0.0-beta.12"
27
+ "@tsparticles/cli-command-create": "^4.0.0-beta.15",
28
+ "commander": "^14.0.3"
22
29
  },
23
30
  "devDependencies": {
24
- "@tsparticles/prettier-config": "^4.0.0-beta.12"
31
+ "@tsparticles/prettier-config": "^4.0.0-beta.15"
25
32
  },
26
33
  "description": "tsParticles CLI - Create command only",
27
34
  "author": "Matteo Bruni <matteo.bruni@me.com>",
28
- "scripts": {
29
- "prettify:ci:readme": "prettier --check ./README.md",
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": "1dfc9e1e6e39eb5c9a6e0495130ca9eac515d707"
36
+ }