Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V 3 5 0 #4

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
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/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [18]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

node scripts/verifyCommit.js "$1"
node scripts/verifyCommit.cjs "$1"
28 changes: 14 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PATH
PATH
remote: vite_ruby
specs:
vite_ruby (3.3.4)
vite_ruby (3.5.0)
dry-cli (>= 0.7, < 2)
rack-proxy (~> 0.6, >= 0.6.1)
zeitwerk (~> 2.2)
Expand Down Expand Up @@ -97,7 +97,7 @@ GEM
tzinfo (~> 2.0)
ansi (1.5.0)
ast (2.4.2)
base64 (0.1.1)
base64 (0.2.0)
benchmark-ips (2.12.0)
bigdecimal (3.1.4)
builder (3.2.4)
Expand All @@ -108,7 +108,7 @@ GEM
crass (1.0.6)
date (3.3.3)
docile (1.4.0)
drb (2.1.1)
drb (2.2.0)
ruby2_keywords
dry-cli (1.0.0)
erubi (1.12.0)
Expand All @@ -117,11 +117,11 @@ GEM
i18n (1.14.1)
concurrent-ruby (~> 1.0)
io-console (0.6.0)
irb (1.8.1)
irb (1.9.0)
rdoc
reline (>= 0.3.8)
json (2.6.3)
loofah (2.21.3)
loofah (2.22.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
m (1.6.2)
Expand All @@ -135,15 +135,15 @@ GEM
marcel (1.0.2)
method_source (1.0.0)
mini_mime (1.1.5)
mini_portile2 (2.8.4)
mini_portile2 (2.8.5)
minitest (5.20.0)
minitest-reporters (1.6.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
minitest-stub_any_instance (1.0.3)
mutex_m (0.1.2)
mutex_m (0.2.0)
net-imap (0.4.0)
date
net-protocol
Expand All @@ -167,9 +167,9 @@ GEM
pry-byebug (3.10.1)
byebug (~> 11.0)
pry (>= 0.13, < 0.15)
psych (5.1.0)
psych (5.1.1.1)
stringio
racc (1.7.1)
racc (1.7.3)
rack (3.0.8)
rack-proxy (0.7.7)
rack
Expand Down Expand Up @@ -210,11 +210,11 @@ GEM
thor (~> 1.0, >= 1.2.2)
zeitwerk (~> 2.6)
rainbow (3.1.1)
rake (13.0.6)
rdoc (6.5.0)
rake (13.1.0)
rdoc (6.6.0)
psych (>= 4.0.0)
regexp_parser (2.8.1)
reline (0.3.9)
reline (0.4.0)
io-console (~> 0.5)
rexml (3.2.6)
rubocop (1.24.1)
Expand All @@ -241,8 +241,8 @@ GEM
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
spring (2.1.1)
stringio (3.0.8)
thor (1.2.2)
stringio (3.0.9)
thor (1.3.0)
timeout (0.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
Expand Down
4 changes: 2 additions & 2 deletions examples/rails/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"dev": "vite"
},
"engines": {
"node": "16",
"pnpm": "7"
"node": "18",
"pnpm": "8"
},
"dependencies": {
"@bugsnag/js": "^7.20.2",
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"docs": "npm -C docs run dev",
"docs:search": "npm -C docs run search",
"release": "node scripts/release",
"release": "node scripts/release.cjs",
"lint": "lint-staged",
"postinstall": "husky install",
"changelog": "node scripts/changelog"
"changelog": "node scripts/changelog.cjs"
},
"devDependencies": {
"@mussi/eslint-config": "^0.5.1",
"@types/node": "^14.18.21",
"@types/node": "^18",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.3.6",
Expand Down
Loading
Loading