Skip to content

Commit

Permalink
🐛 Fix build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumolari committed May 27, 2023
1 parent 14872fd commit 2bec4a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"execa": "^5.0.0"
},
"devDependencies": {
"@types/node": "^15.0.2",
"@types/node": "^20.2.5",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
Expand All @@ -36,7 +36,7 @@
"build:es6": "tsc --p tsconfig.es6.json",
"test": "vitest --coverage",
"format": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' --write",
"prepublishOnly": "run-s test build"
"prepublishOnly": "CI=1 run-s test build"
},
"husky": {
"hooks": {
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.es6.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "dist/es6",
"allowSyntheticDefaultImports": false
"outDir": "dist/es6"
},
"include": ["src/**/*"]
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -407,10 +407,10 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.6.tgz#1734d119dfa8fede5606d35ae10f9fc9c84d889b"
integrity sha512-FKyawK3o5KL16AwbeFajen8G4K3mmqUrQsehn5wNKs8IzlKHE8TfnSmILXVMVziAEcnB23u1RCFU1NT6hSyr7Q==

"@types/node@^15.0.2":
version "15.3.1"
resolved "https://registry.yarnpkg.com/@types/node/-/node-15.3.1.tgz#23a06b87eedb524016616e886b116b8fdcb180af"
integrity sha512-weaeiP4UF4XgF++3rpQhpIJWsCTS4QJw5gvBhQu6cFIxTwyxWIe3xbnrY/o2lTCQ0lsdb8YIUDUvLR4Vuz5rbw==
"@types/node@^20.2.5":
version "20.2.5"
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.2.5.tgz#26d295f3570323b2837d322180dfbf1ba156fefb"
integrity sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==

"@types/parse-json@^4.0.0":
version "4.0.0"
Expand Down

0 comments on commit 2bec4a2

Please sign in to comment.