Skip to content

Commit

Permalink
v3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmark committed Nov 19, 2023
1 parent fbaa626 commit 0a2ab2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "extract-schema-coordinates",
"version": "3.0.5",
"version": "3.0.6",
"description": "extract schema coordinates from GraphQL documents",
"type": "module",
"exports": {
Expand All @@ -17,7 +17,7 @@
"build": "npx tsup-node src/extract-schema-coordinates.ts --dts --format esm,cjs --out-dir lib",
"typecheck": "npx tsup-node src/extract-schema-coordinates.ts --dts-only",
"postinstall": "npx husky install",
"prepare": "./strip-postinstall",
"prepare": "./strip-postinstall.sh",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion strip-postinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ set -euo pipefail

# prevent our postinstall hook from infecting applications
jq 'del(.scripts.postinstall)' package.json > package.json.tmp
mv package.json.tmp package.json
mv package.json.tmp package.json
rm package.json.tmp

0 comments on commit 0a2ab2d

Please sign in to comment.