Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Jul 30, 2024
1 parent 1354fc7 commit 980114e
Show file tree
Hide file tree
Showing 6 changed files with 490 additions and 265 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: yarn --frozen-lockfile

- name: build
run: yarn build-prod
run: yarn build

- name: release
env:
Expand Down
5 changes: 1 addition & 4 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#!/bin/sh
[ -n "$CI" ] && exit 0
. "$(dirname "$0")/_/husky.sh"

yarn commitlint-def $1
# exit 1 # uncomment to debug
dev-lib commitlint $1
4 changes: 1 addition & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/bin/sh
[ -n "$CI" ] && exit 0
. "$(dirname "$0")/_/husky.sh"

yarn lint-staged-def
dev-lib lint-staged
4 changes: 4 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// prettier-ignore
module.exports = [
...require('@naturalcycles/dev-lib/cfg/eslint.config'),
]
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"version": "3.16.4",
"description": "Opinionated library to work with Google Datastore",
"scripts": {
"prepare": "husky"
"prepare": "husky",
"build": "dev-lib build",
"test": "dev-lib test",
"lint": "dev-lib lint",
"bt": "dev-lib bt",
"lbt": "dev-lib lbt"
},
"dependencies": {
"@google-cloud/datastore": "^9.0.0",
Expand All @@ -12,8 +17,8 @@
"@naturalcycles/nodejs-lib": "^13.1.0"
},
"devDependencies": {
"@naturalcycles/dev-lib": "^13.0.0",
"@types/node": "^20.4.1",
"@naturalcycles/dev-lib": "^15.2.0",
"@types/node": "^22.0.0",
"jest": "^29.0.3"
},
"files": [
Expand All @@ -27,7 +32,7 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.12.0"
"node": ">=20.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
Loading

0 comments on commit 980114e

Please sign in to comment.