@tsparticles/cli 3.0.6 → 3.0.7

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.
@@ -5,7 +5,7 @@ buildCommand.option("-a, --all", "Do all build steps (default if no flags are sp
5
5
  buildCommand.option("-b, --bundle", "Bundle the library using Webpack", false);
6
6
  buildCommand.option("-c, --clean", "Clean the dist folder", false);
7
7
  buildCommand.option("--ci", "Do all build steps for CI, no fixing files, only checking if they are formatted correctly", false);
8
- buildCommand.option("-cd, --circular-deps", "Check for circular dependencies", false);
8
+ buildCommand.option("-r, --cd, --circular-deps", "Check for circular dependencies", false);
9
9
  buildCommand.option("-d, --dist", "Build the dist files", false);
10
10
  buildCommand.option("-l, --lint", "Lint the source files", false);
11
11
  buildCommand.option("-p, --prettify", "Prettify the source files", false);
@@ -84,7 +84,7 @@
84
84
  "prettier": "@tsparticles/prettier-config",
85
85
  "devDependencies": {
86
86
  "@babel/core": "^7.28.3",
87
- "@tsparticles/cli": "^3.0.6",
87
+ "@tsparticles/cli": "^3.0.7",
88
88
  "@tsparticles/eslint-config": "^3.0.5",
89
89
  "@tsparticles/prettier-config": "^3.0.1",
90
90
  "@tsparticles/tsconfig": "^3.0.5",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/cli",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,7 +15,7 @@ buildCommand.option(
15
15
  "Do all build steps for CI, no fixing files, only checking if they are formatted correctly",
16
16
  false,
17
17
  );
18
- buildCommand.option("-cd, --circular-deps", "Check for circular dependencies", false);
18
+ buildCommand.option("-r, --cd, --circular-deps", "Check for circular dependencies", false);
19
19
  buildCommand.option("-d, --dist", "Build the dist files", false);
20
20
  buildCommand.option("-l, --lint", "Lint the source files", false);
21
21
  buildCommand.option("-p, --prettify", "Prettify the source files", false);