Skip to content

Commit e22672c

Browse files
committed
chore: migrate to pkgmgr and ignore non-npm lockfiles
1 parent b0c46ff commit e22672c

3 files changed

Lines changed: 35 additions & 7 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
node_modules
22

3+
# non-npm JavaScript lockfiles
4+
yarn.lock
5+
pnpm-lock.yaml
6+
bun.lock
7+
bun.lockb
8+
39
workspace/
410
**/.cache/
511
**/build/

package-lock.json

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
"type": "module",
3636
"scripts": {
3737
"postinstall": "cd ./epicshop && npm install && cd ./epic-me && npm install",
38-
"start": "npx --prefix ./epicshop epicshop start",
39-
"dev": "npx --prefix ./epicshop epicshop start",
38+
"start": "pkgmgrx --prefix ./epicshop epicshop start",
39+
"dev": "pkgmgrx --prefix ./epicshop epicshop start",
4040
"update": "npx --prefix ./epicshop epicshop update",
41-
"test": "npm run test --silent --prefix playground",
42-
"test:e2e": "npm run test:e2e --silent --prefix playground",
43-
"test:e2e:dev": "npm run test:e2e:dev --silent --prefix playground",
44-
"test:e2e:run": "npm run test:e2e:run --silent --prefix playground",
41+
"test": "pkgmgr run test --silent --prefix playground",
42+
"test:e2e": "pkgmgr run test:e2e --silent --prefix playground",
43+
"test:e2e:dev": "pkgmgr run test:e2e:dev --silent --prefix playground",
44+
"test:e2e:run": "pkgmgr run test:e2e:run --silent --prefix playground",
4545
"setup": "node ./epicshop/setup.js",
4646
"setup:custom": "node ./epicshop/setup-custom.js",
4747
"lint": "eslint .",
@@ -67,7 +67,8 @@
6767
"@epic-web/config": "^1.21.3",
6868
"eslint": "^9.39.1",
6969
"prettier": "^3.7.4",
70-
"typescript": "^5.9.3"
70+
"typescript": "^5.9.3",
71+
"pkgmgr": "^1.1.1"
7172
},
7273
"prettier": "@epic-web/config/prettier"
7374
}

0 commit comments

Comments
 (0)