Skip to content

Commit ac3d6ae

Browse files
committed
Migrate to pnpm
Additionally, add cooldown to dependabot configuration
1 parent d6e7a20 commit ac3d6ae

6 files changed

Lines changed: 765 additions & 584 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ updates:
88
github_actions:
99
patterns:
1010
- "*"
11+
cooldown:
12+
default-days: 5
1113
- package-ecosystem: bundler
1214
directory: /
1315
schedule:
@@ -17,6 +19,8 @@ updates:
1719
bundler:
1820
patterns:
1921
- "*"
22+
cooldown:
23+
default-days: 5
2024
- package-ecosystem: npm
2125
directory: /
2226
schedule:
@@ -26,6 +30,5 @@ updates:
2630
npm:
2731
patterns:
2832
- "*"
29-
ignore:
30-
- dependency-name: "tailwindcss"
31-
versions: ">= 4.0"
33+
cooldown:
34+
default-days: 5

Procfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
web: env RUBY_DEBUG_OPEN=true bin/rails server
2-
css: yarn build:css --watch
2+
css: pnpm build:css --watch

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ https://activeadmin-demo.onrender.com
1111
- Install Node 24 with [nodenv](https://github.com/nodenv/nodenv)
1212
- `corepack enable`
1313
- `bundle install`
14-
- `yarn install`
14+
- `pnpm install`
1515
- `bin/rails db:seed`
1616
- `bin/dev`
1717

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"scripts": {
1111
"build:css": "npx @tailwindcss/cli -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify"
1212
},
13-
"packageManager": "yarn@1.22.19"
13+
"packageManager": "pnpm@10.33.0"
1414
}

0 commit comments

Comments
 (0)