Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Apr 29, 2024
1 parent abb0c82 commit c94b67d
Show file tree
Hide file tree
Showing 5 changed files with 1,077 additions and 1,113 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- { uses: actions/setup-node@v4, with: { node-version: 'lts/*', cache: 'yarn' } }

# Cache for npm/npx in ~/.npm
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: npm-v1-${{ runner.os }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@naturalcycles/scrubber-lib",
"scripts": {
"prepare": "husky install"
"prepare": "husky"
},
"dependencies": {
"@naturalcycles/js-lib": "^14.55.0",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extends": "@naturalcycles/dev-lib/cfg/tsconfig.json",
"compilerOptions": {
"outDir": "dist"
"outDir": "dist",
},
"include": ["src"],
"exclude": ["**/__exclude"]
"exclude": ["**/__exclude"],
}
4 changes: 2 additions & 2 deletions tsconfig.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"sourceMap": false
"sourceMap": false,
},
"exclude": ["**/__exclude", "src/test", "src/**/*.test.*"]
"exclude": ["**/__exclude", "src/test", "src/**/*.test.*"],
}
Loading

0 comments on commit c94b67d

Please sign in to comment.