Skip to content

Commit 1b6ac9f

Browse files
committed
fix: ignore changes to husky
1 parent e807db8 commit 1b6ac9f

File tree

4 files changed

+148
-4
lines changed

4 files changed

+148
-4
lines changed

.github/workflows/release.yml

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
release:
1212
name: Release
1313
runs-on: ubuntu-latest
14-
env:
15-
HUSKY: 0 # disabled husky and lint staged; https://typicode.github.io/husky/#/?id=with-env-variables
1614

1715
steps:
1816
- name: Checkout

lerna.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"ignoreChanges": ["**/test/**"]
1616
},
1717
"publish": {
18-
"registry": "https://registry.npmjs.org"
18+
"registry": "https://registry.npmjs.org",
19+
"ignoreChanges": [".husky/**"]
1920
}
2021
},
2122
"$schema": "node_modules/lerna/schemas/lerna-schema.json"

package-lock.json

+146
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
}
1919
},
2020
"scripts": {
21-
"version": "npm install --workspaces && git add package-lock.json",
2221
"prebuild": "cd ./packages/apidom-parser-adapter-json/node_modules/tree-sitter && node-gyp rebuild && cd ../../../apidom-parser-adapter-yaml-1-2/node_modules/tree-sitter && node-gyp rebuild && cd ../../../../node_modules/tree-sitter-json && tree-sitter generate ./grammar.js && tree-sitter build --wasm && node-gyp rebuild && cd ../@tree-sitter-grammars/tree-sitter-yaml && tree-sitter generate ./grammar.js && tree-sitter build --wasm && node-gyp rebuild",
2322
"build": "lerna run build",
2423
"build:es": "lerna run build:es",

0 commit comments

Comments
 (0)