Skip to content

Commit

Permalink
fix: postinstall script (#32)
Browse files Browse the repository at this point in the history
* fix: postinstall script

Signed-off-by: Sam Gammon <sam@elide.ventures>

* chore: version bump → `1.0.4`

Signed-off-by: Sam Gammon <sam@elide.ventures>

* chore: update to commander.js `develop` branch

Adopt changes from tj/commander.js#2170

Signed-off-by: Sam Gammon <sam@elide.ventures>

* fix: disable distcheck (tmp)

Signed-off-by: Sam Gammon <sam@elide.ventures>

* chore: update all node deps

Signed-off-by: Sam Gammon <sam@elide.ventures>

---------

Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon authored Apr 15, 2024
1 parent 25f5594 commit 746c387
Show file tree
Hide file tree
Showing 3 changed files with 194 additions and 262 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/
exit 1
#exit 1 not working
fi
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: 'Artifact: Dist'
Expand Down
29 changes: 14 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hashlock",
"version": "1.0.3",
"version": "1.0.4",
"description": "Verify hash files (like something.sha256)",
"keywords": [
"actions",
Expand Down Expand Up @@ -81,12 +81,11 @@
"docs:open": "open ./docs/index.html",
"entry": "pnpm run entry:node",
"entry:bun": "bun ./dist/cli.mjs",
"entry:deno": "deno run ./dist/cli.mjs",
"entry:deno": "deno run --allow-read ./dist/cli.mjs",
"entry:node": "node ./dist/cli.mjs",
"format:check": "bun x prettier --check .",
"format:write": "bun x prettier --write .",
"hashlock": "./bin/hashlock",
"postinstall": "patch-package",
"lint": "publint && bun x eslint . -c ./.github/linters/.eslintrc.yml",
"lockfiles": "rm -fr node_modules && npm i && rm -fr node_modules && bun i && rm -fr node_modules && pnpm i",
"precompress": "cd dist && pigz -p 4 -k -f -9 ./*.js",
Expand Down Expand Up @@ -164,22 +163,22 @@
"@actions/core": "1.10.1",
"@clack/core": "0.3.4",
"@clack/prompts": "0.7.0",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@microsoft/eslint-formatter-sarif": "3.0.0",
"@commitlint/cli": "19.2.2",
"@commitlint/config-conventional": "19.2.2",
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"@vercel/ncc": "0.38.1",
"chalk": "5.3.0",
"commander": "12.0.0",
"commander": "git://github.com/tj/commander.js.git#b95ea4479a27fefb1e311454930ccaf3ab58b723",
"esbuild": "0.20.2",
"esbuild-plugin-replace": "1.4.0",
"eslint": "8.57.0",
"eslint-plugin-github": "4.10.2",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsonc": "2.14.1",
"eslint-plugin-jest": "28.2.0",
"eslint-plugin-jsonc": "2.15.1",
"eslint-plugin-prettier": "5.1.3",
"glob": "10.3.12",
"husky": "^9.0.11",
Expand All @@ -191,11 +190,11 @@
"path-scurry": "1.10.2",
"prettier": "3.2.5",
"prettier-eslint": "16.3.0",
"prettier-plugin-packagejson": "2.4.13",
"prettier-plugin-packagejson": "2.5.0",
"publint": "0.2.7",
"ts-jest": "29.1.2",
"typedoc": "0.25.12",
"typescript": "5.4.3"
"typedoc": "0.25.13",
"typescript": "5.4.5"
},
"packageManager": "pnpm@8.15.5+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589",
"engines": {
Expand Down
Loading

0 comments on commit 746c387

Please sign in to comment.