Skip to content

Commit 0a10003

Browse files
committed
chore: 🧹 remove old package-lock.yml (pnpm migration)
1 parent 3316be7 commit 0a10003

File tree

4 files changed

+18
-10747
lines changed

4 files changed

+18
-10747
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "docker"
4-
directory: "/"
3+
- package-ecosystem: 'docker'
4+
directory: '/'
55
schedule:
6-
interval: "daily"
7-
- package-ecosystem: "npm"
8-
directory: "/"
6+
interval: 'daily'
7+
# Note: Dependabot uses "npm" ecosystem but automatically detects pnpm-lock.yaml
8+
# Make sure package-lock.json is gitignored to prevent confusion
9+
- package-ecosystem: 'npm'
10+
directory: '/'
911
schedule:
10-
interval: "daily"
12+
interval: 'daily'
1113
# Maintain dependencies for GitHub Actions
1214
# src: https://github.com/marketplace/actions/build-and-push-docker-images#keep-up-to-date-with-github-dependabot
13-
- package-ecosystem: "github-actions"
14-
directory: "/"
15+
- package-ecosystem: 'github-actions'
16+
directory: '/'
1517
schedule:
16-
interval: "daily"
18+
interval: 'daily'

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ typings/
5454
.pnpm-store/
5555
pnpm-debug.log*
5656

57+
# Lock files (pnpm-lock.yaml is used)
58+
package-lock.json
59+
yarn.lock
60+
5761
# Optional eslint cache
5862
.eslintcache
5963

.npmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
auto-install-peers=true
33
strict-peer-dependencies=false
44
shamefully-hoist=false
5+
6+
# Force pnpm usage (prevent npm/yarn)
7+
package-manager=pnpm

0 commit comments

Comments
 (0)