Skip to content

Commit

Permalink
Upgrade packages
Browse files Browse the repository at this point in the history
  • Loading branch information
binos30 committed Sep 26, 2024
1 parent d850424 commit 339f835
Show file tree
Hide file tree
Showing 4 changed files with 420 additions and 508 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
key: prettier-main-cache

- name: Run prettier
run: yarn prettier
run: yarn prettier-ci

- name: Remove prettier cache
if: github.event_name == 'push'
Expand Down
21 changes: 18 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,16 @@ GEM
net-smtp (0.5.0)
net-protocol
nio4r (2.7.3)
nokogiri (1.16.7-aarch64-linux)
racc (~> 1.4)
nokogiri (1.16.7-arm-linux)
racc (~> 1.4)
nokogiri (1.16.7-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86-linux)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
parallel (1.26.3)
Expand Down Expand Up @@ -302,7 +312,7 @@ GEM
thor (1.3.2)
tilt (2.4.0)
timeout (0.4.1)
turbo-rails (2.0.9)
turbo-rails (2.0.10)
actionpack (>= 6.0.0)
railties (>= 6.0.0)
tzinfo (2.0.6)
Expand All @@ -315,14 +325,19 @@ GEM
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webrick (1.8.1)
webrick (1.8.2)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
yard (0.9.37)
zeitwerk (2.6.18)

PLATFORMS
aarch64-linux
arm-linux
arm64-darwin
x86-linux
x86_64-darwin
x86_64-linux

DEPENDENCIES
Expand Down Expand Up @@ -353,4 +368,4 @@ DEPENDENCIES
web-console

BUNDLED WITH
2.5.19
2.5.20
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.26.2",
"sass": "^1.79.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"esbuild": "^0.23.1",
"eslint": "^9.11.0",
"@eslint/js": "^9.11.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-formatter-gha": "^1.5.1",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
Expand All @@ -71,16 +71,17 @@
"build:css": "yarn build:css:compile && yarn build:css:prefix",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\"",
"eslint": "eslint . --cache --cache-location .cache/eslint --report-unused-disable-directives",
"eslint-fix": "eslint --cache --cache-location .cache/eslint --fix . --report-unused-disable-directives",
"eslint-ci": "eslint . --cache --cache-strategy content --cache-location .cache/eslint --format gha",
"prettier-fix": "prettier --write --cache --cache-location .cache/prettier '**/*.{css,html,js,json,jsx,md,mjs,scss,yml}'",
"prettier": "prettier --check --cache --cache-location .cache/prettier '**/*.{css,html,js,json,jsx,md,mjs,scss,yml}'",
"eslint-fix": "eslint . --cache --cache-location .cache/eslint --fix --report-unused-disable-directives",
"prettier": "prettier . --check --cache --cache-location .cache/prettier",
"prettier-ci": "prettier . --check --cache --cache-strategy content --cache-location .cache/prettier",
"prettier-fix": "prettier . --write --cache --cache-location .cache/prettier",
"rubocop": "bin/rubocop",
"rubocop-fix": "bin/rubocop -A",
"rubocop-ci": "bin/rubocop -f github",
"rubocop-fix": "bin/rubocop -A",
"slim-lint": "bin/bundle exec slim-lint 'app/views/**/*.slim'",
"stree-fix": "bin/bundle exec stree write '**/*.{rake,rb}'",
"stree": "bin/bundle exec stree check '**/*.{rake,rb}'",
"stree-fix": "bin/bundle exec stree write '**/*.{rake,rb}'",
"postinstall": "husky"
},
"lint-staged": {
Expand Down
Loading

0 comments on commit 339f835

Please sign in to comment.