Skip to content

Commit

Permalink
Merge pull request codeforboston#394 from mikeyavorsky/fix-lockfile
Browse files Browse the repository at this point in the history
run install with newer npm
  • Loading branch information
mikeyavorsky authored Jun 5, 2024
2 parents 3d836fa + 63873f4 commit 400133e
Show file tree
Hide file tree
Showing 4 changed files with 12,363 additions and 12,360 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-frontend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
node-version:
description: "Version used by actions/setup-node"
required: true
default: "16"
default: "20"
runs:
using: "composite"
steps:
Expand Down
8 changes: 4 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"private": true,
"scripts": {
"dev": "next dev",
"build:dev": "env-cmd -f .env.development next build && next export",
"build:stage": "env-cmd -f .env.staging next build && next export",
"build:prod": "env-cmd -f .env.production next build && next export",
"build:ui": "env-cmd -f .env.ui next build && next export",
"build:dev": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.development next build && next export",
"build:stage": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.staging next build && next export",
"build:prod": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.production next build && next export",
"build:ui": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.ui next build && next export",
"lint": "next lint",
"check-formatting": "prettier --check .",
"prepare": "cd ${HOOKS_DIR:-..} && husky install frontend/.husky",
Expand Down
Loading

0 comments on commit 400133e

Please sign in to comment.