Skip to content

Commit

Permalink
fix: resolve not executable husky files and update pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
emnnipal committed May 15, 2022
1 parent f7c36d8 commit ecf168c
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-app-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- uses: pnpm/[email protected]
with:
version: 7.0.0-rc.3
version: 7.0.1

- uses: actions/setup-node@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: pnpm/[email protected]
with:
version: 7.0.0-rc.3
version: 7.0.1

- uses: actions/setup-node@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: pnpm/[email protected]
with:
version: 7.0.0-rc.3
version: 7.0.1

- uses: actions/setup-node@v2
with:
Expand Down
Empty file modified .husky/commit-msg
100644 → 100755
Empty file.
Empty file modified .husky/pre-commit
100644 → 100755
Empty file.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"server:start": "cross-env NODE_ENV=production node server/server.js",
"pm2:start": "pm2 start npm --name 'sample-app-name' -- run server:start",
"deploy": "npm run build && npm run pm2:start",
"generate:env": "base64 -w 0 < .env > .env.base64",
"generate:env": "openssl base64 -A -in .env -out .env.base64",
"decode:env": "openssl base64 -d -A -in .env.base64 -out .env.output",
"prepare": "husky install"
},
"lint-staged": {
Expand Down Expand Up @@ -59,4 +60,4 @@
"vite-plugin-compression": "^0.5.1",
"vite-plugin-svgr": "^1.1.0"
}
}
}
26 changes: 13 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ecf168c

Please sign in to comment.