Skip to content

Commit 5b17b3d

Browse files
committed
Upgrade dependencies, enabled TS isolated declarations
1 parent 65f3258 commit 5b17b3d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2345
-2114
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
restore-keys: |
4949
${{ runner.OS }}-bun-
5050
- name: Install Node Modules
51-
run: bun install
51+
run: yarn install
5252

5353
- name: Run Rubocop
5454
run: bundle exec rubocop
@@ -98,7 +98,7 @@ jobs:
9898
restore-keys: |
9999
${{ runner.OS }}-bun-
100100
- name: Install Node Modules
101-
run: bun install
101+
run: yarn install
102102

103103
- name: Run Specs
104104
run: bundle exec rspec

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@
3939
/coverage
4040

4141
# SvelteKit
42-
node_modules
4342
/.svelte-kit
43+
node_modules
44+
/public
45+
tsconfig.tsbuildinfo
4446
vite.config.js.timestamp-*
4547
vite.config.ts.timestamp-*
46-
/public

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require:
1212

1313
AllCops:
1414
NewCops: enable
15-
TargetRubyVersion: 3.3
15+
TargetRubyVersion: 3.4
1616
ParserEngine: parser_prism
1717
SuggestExtensions: false
1818
Exclude:

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
bun 1.1.29
2-
ruby 3.3.5
1+
bun 1.1.42
2+
ruby 3.4.1

.yarn/install-state.gz

29.5 KB
Binary file not shown.

.yarn/releases/yarn-4.5.0.cjs

Lines changed: 0 additions & 925 deletions
This file was deleted.

.yarn/releases/yarn-4.5.3.cjs

Lines changed: 934 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
yarnPath: .yarn/releases/yarn-4.5.0.cjs
2-
nodeLinker: node-modules
31
compressionLevel: mixed
2+
43
enableGlobalCache: false
4+
5+
nodeLinker: node-modules
6+
7+
yarnPath: .yarn/releases/yarn-4.5.3.cjs

0 commit comments

Comments
 (0)