Skip to content

Commit

Permalink
chore(deps): update dependency tsbb to v4 #2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 29, 2023
1 parent c1d2920 commit 60b184a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
successful: ${{steps.create_tag.outputs.successful }}

github-package:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
needs: build-deploy
if: needs.build-deploy.outputs.successful
steps:
Expand Down
18 changes: 12 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
},
"scripts": {
"prepack": "husky install && npm run build",
"start": "tsbb watch --disable-babel",
"build": "tsbb build --disable-babel",
"start": "tsbb watch",
"build": "tsbb build",
"type-check": "tsc --noEmit",
"test": "tsbb test",
"coverage": "tsbb test --coverage",
Expand All @@ -35,13 +35,19 @@
"engines": {
"node": ">=14.16"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/"
]
},
"lint-staged": {
"*.{js,ts,json}": "prettier --write"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsbb": "~3.7.6"
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"tsbb": "^4.0.4"
}
}
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"strictBindCallApply": true,
Expand All @@ -15,5 +16,7 @@
"noImplicitAny": true,
"outDir": "lib",
"baseUrl": "."
}
},
"include": ["src"],
"exclude": ["node_modules"]
}

0 comments on commit 60b184a

Please sign in to comment.