@tsparticles/cli 2.2.2 → 2.2.4

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.
@@ -71,7 +71,7 @@ buildCommand.action(async (argPath) => {
71
71
  canContinue = await bundle(basePath);
72
72
  }
73
73
  if (canContinue && prettier) {
74
- const { prettifyReadme, prettifyPackageJson, prettifyPackageDistJson } = await Promise.resolve().then(() => __importStar(require("./build-prettier")));
74
+ const { prettifyReadme, prettifyPackageJson, prettifyPackageDistJson } = await Promise.resolve().then(() => __importStar(require("./build-prettier.js")));
75
75
  canContinue = await prettifyReadme(basePath, ci);
76
76
  canContinue = await prettifyPackageJson(basePath, ci);
77
77
  canContinue = await prettifyPackageDistJson(basePath, ci);
@@ -83,7 +83,7 @@
83
83
  "prettier": "@tsparticles/prettier-config",
84
84
  "devDependencies": {
85
85
  "@babel/core": "^7.23.9",
86
- "@tsparticles/cli": "^2.2.2",
86
+ "@tsparticles/cli": "^2.2.4",
87
87
  "@tsparticles/eslint-config": "^2.1.4",
88
88
  "@tsparticles/prettier-config": "^2.1.0",
89
89
  "@tsparticles/tsconfig": "^2.0.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/cli",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "tsparticles-cli": "dist/cli.js"
@@ -12,7 +12,7 @@
12
12
  "dependencies": {
13
13
  "@tsparticles/eslint-config": "^2.1.4",
14
14
  "@tsparticles/prettier-config": "^2.1.0",
15
- "@tsparticles/tsconfig": "^2.1.6",
15
+ "@tsparticles/tsconfig": "^2.1.7",
16
16
  "@tsparticles/webpack-plugin": "^2.1.6",
17
17
  "@typescript-eslint/eslint-plugin": "^7.1.0",
18
18
  "@typescript-eslint/parser": "^7.1.0",
@@ -85,7 +85,7 @@ buildCommand.action(async (argPath: string) => {
85
85
  }
86
86
 
87
87
  if (canContinue && prettier) {
88
- const { prettifyReadme, prettifyPackageJson, prettifyPackageDistJson } = await import("./build-prettier");
88
+ const { prettifyReadme, prettifyPackageJson, prettifyPackageDistJson } = await import("./build-prettier.js");
89
89
 
90
90
  canContinue = await prettifyReadme(basePath, ci);
91
91
  canContinue = await prettifyPackageJson(basePath, ci);