-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and development environment.
- Switch from Yarn to pnpm. - Update NodeJS version used for builds, Hugo, and Sass binaries. - Update all NPM dependencies. - Adjust for some compatibility issues in new major releases of datatables and a11y-dialog.
- Loading branch information
Showing
16 changed files
with
2,778 additions
and
2,179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/vendor | ||
/public | ||
/resources | ||
/pnpm-lock.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/usr/bin/env bash | ||
exec docker-compose run --rm web env "$@" | ||
exec docker compose run --rm web env "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/usr/bin/env bash | ||
exec docker-compose run --rm web "$(basename "$0")" "$@" | ||
exec docker compose run --rm web "$(basename "$0")" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/env bash | ||
exec docker compose run --rm web "$(basename "$0")" "$@" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
version: "3" | ||
services: | ||
web: | ||
build: | ||
context: . | ||
volumes: | ||
- .:/app | ||
- yarn_cache:/usr/local/node_modules | ||
- pnpm_cache:/usr/local/pnpm | ||
- npm_cache:/usr/local/node_modules | ||
ports: | ||
- "4490:4490" | ||
- "4491:4491" | ||
volumes: | ||
yarn_cache: | ||
pnpm_cache: | ||
npm_cache: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
{ | ||
"scripts": { | ||
"lint:js": "eslint --ignore-path .gitignore .", | ||
"lint": "yarn lint:js", | ||
"lint": "pnpm run lint:js", | ||
"prettier:check": "prettier --check ." | ||
}, | ||
"dependencies": { | ||
"@uswds/uswds": "^3.4.1", | ||
"a11y-dialog": "^7.3.0", | ||
"bootstrap": "^5.1.0", | ||
"datatables.net-dt": "^1.11.5", | ||
"echarts": "^5.3.1", | ||
"@uswds/uswds": "^3.8.1", | ||
"a11y-dialog": "^8.0.4", | ||
"bootstrap": "^5.3.3", | ||
"datatables.net-dt": "^2.0.8", | ||
"echarts": "^5.5.1", | ||
"escape-html": "^1.0.3", | ||
"form-serialize": "^0.7.2", | ||
"jquery": "^3.6.0", | ||
"ky": "^1.1.3", | ||
"jquery": "^3.7.1", | ||
"ky": "^1.4.0", | ||
"lodash-es": "^4.17.21", | ||
"pinia": "^2.0.12", | ||
"vue": "^3.2.31", | ||
"vue-router": "^4.0.14" | ||
"pinia": "^2.1.7", | ||
"vue": "^3.4.32", | ||
"vue-router": "^4.4.0" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.2", | ||
"eslint": "^8.12.0", | ||
"autoprefixer": "^10.4.19", | ||
"eslint": "^8.57.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-import": "^2.24.2", | ||
"eslint-plugin-simple-import-sort": "^10.0.0", | ||
"postcss": "^8.4.31", | ||
"postcss-cli": "^10.0.0", | ||
"postcss-prefixwrap": "^1.29.0", | ||
"postcss-relative-rem": "^0.1.0", | ||
"prettier": "^3.0.3", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-simple-import-sort": "^12.1.1", | ||
"postcss": "^8.4.39", | ||
"postcss-cli": "^11.0.0", | ||
"postcss-prefixwrap": "^1.49.0", | ||
"postcss-relative-rem": "^1.0.0", | ||
"prettier": "^3.3.3", | ||
"prettier-plugin-go-template": "^0.0.15" | ||
} | ||
} |
Oops, something went wrong.