Skip to content

Commit a8d0cd2

Browse files
committed
build: updated deps
1 parent a2b2bed commit a8d0cd2

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
"version": "node scripts/postversion.js && git add files/empty-project/package.json"
2929
},
3030
"dependencies": {
31-
"@tsparticles/eslint-config": "^2.0.3",
31+
"@tsparticles/eslint-config": "^2.0.4",
3232
"@tsparticles/prettier-config": "^2.0.1",
3333
"@tsparticles/tsconfig": "^2.0.1",
34-
"@tsparticles/webpack-plugin": "^2.0.3",
34+
"@tsparticles/webpack-plugin": "^2.0.4",
3535
"@typescript-eslint/eslint-plugin": "^6.14.0",
3636
"@typescript-eslint/parser": "^6.14.0",
3737
"commander": "^11.1.0",

pnpm-lock.yaml

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/build/build-tsc.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import path from "path";
33
import ts from "typescript";
44

55
const enum ExitCodes {
6-
OK,
7-
EmitErrors,
8-
NoDataOrOptions,
9-
NoOptions,
10-
ParseError,
6+
OK = 0,
7+
EmitErrors = 1,
8+
NoDataOrOptions = 2,
9+
NoOptions = 3,
10+
ParseError = 4,
1111
}
1212

1313
/**

0 commit comments

Comments
 (0)