Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
ruby-version: '3.4.9' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
working-directory: ${{ env.WORKING_DIRECTORY }}
Expand Down
10 changes: 5 additions & 5 deletions docs/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,26 @@ source "https://rubygems.org"
gem "github-pages", "~> 228", group: :jekyll_plugins
gem "webrick"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.5", ">= 2.5.1"
gem "minima", "~> 2.5", ">= 2.5.2"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-seo-tag", ">= 2.8.0"
gem "jekyll-seo-tag", ">= 2.9.0"
gem "jekyll-tabs"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", "~> 2.0", ">= 2.0.5"
gem "tzinfo", "~> 2.0", ">= 2.0.6"
gem "tzinfo-data"
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin]

# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.8.0", :platforms => [:jruby]
gem "http_parser.rb", "~> 0.8.1", :platforms => [:jruby]
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,27 @@
"envalid": "^7.3.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@babel/core": "^7.29.7",
"@babel/plugin-transform-runtime": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.18.0",
"@nuxt/types": "^2.18.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.130",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^4.2.5",
"eslint-plugin-sonarjs": "^0.25.1",
"husky": "^8.0.3",
"jest": "^26.0.20s",
"nuxt": "^2.15.8",
"prettier": "^2.8.3",
"prettier": "^2.8.8",
"siroc": "^0.16.0",
"typescript": "^5.0.4"
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
Expand Down
Loading
Loading