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 2900b76 commit 1c7e5bd
Show file tree
Hide file tree
Showing 4 changed files with 192 additions and 191 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
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ GEM
erubi (~> 1.11)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
active_storage_validations (1.1.4)
active_storage_validations (1.2.0)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
Expand Down Expand Up @@ -389,23 +389,23 @@ GEM
stripe (12.6.0)
syntax_tree (6.2.0)
prettier_print (>= 1.2.0)
tailwindcss-rails (2.7.5)
tailwindcss-rails (2.7.6)
railties (>= 7.0.0)
tailwindcss-rails (2.7.5-aarch64-linux)
tailwindcss-rails (2.7.6-aarch64-linux)
railties (>= 7.0.0)
tailwindcss-rails (2.7.5-arm-linux)
tailwindcss-rails (2.7.6-arm-linux)
railties (>= 7.0.0)
tailwindcss-rails (2.7.5-arm64-darwin)
tailwindcss-rails (2.7.6-arm64-darwin)
railties (>= 7.0.0)
tailwindcss-rails (2.7.5-x86_64-darwin)
tailwindcss-rails (2.7.6-x86_64-darwin)
railties (>= 7.0.0)
tailwindcss-rails (2.7.5-x86_64-linux)
tailwindcss-rails (2.7.6-x86_64-linux)
railties (>= 7.0.0)
temple (0.10.3)
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 @@ -421,7 +421,7 @@ GEM
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webrick (1.8.1)
webrick (1.8.2)
websocket (1.2.11)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
Expand Down Expand Up @@ -486,4 +486,4 @@ DEPENDENCIES
web-console

BUNDLED WITH
2.5.19
2.5.20
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
"trix": "^2.1.5"
},
"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",
"globals": "^15.9.0",
"husky": "^9.1.6",
Expand All @@ -59,16 +59,17 @@
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"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,md,mjs,yml}'",
"prettier": "prettier --check --cache --cache-location .cache/prettier '**/*.{css,html,js,json,md,mjs,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 1c7e5bd

Please sign in to comment.