Skip to content

Commit fd2273d

Browse files
committed
Configure project to work without lock files
- Add comprehensive dependency resolutions for problematic packages - Pin exact versions for undici, glob, rimraf, and @types/node - Add yarn.lock and package-lock.json to .gitignore - Remove yarn.lock from git tracking - Ensures consistent builds even without committed lock files
1 parent 3b63aaa commit fd2273d

File tree

3 files changed

+6
-9031
lines changed

3 files changed

+6
-9031
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ node_modules/
4646
npm-debug.log
4747
yarn-debug.log
4848
yarn-error.log
49+
yarn.lock
50+
package-lock.json
4951

5052
# BUCK
5153
buck-out/

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,10 @@
144144
"string-width": "4.2.3",
145145
"wrap-ansi": "7.0.0",
146146
"undici": "6.21.3",
147-
"**/undici": "6.21.3"
147+
"**/undici": "6.21.3",
148+
"**/@types/node": "20.12.12",
149+
"**/glob": "8.1.0",
150+
"**/rimraf": "3.0.2"
148151
},
149152
"engines": {
150153
"node": ">=18"

0 commit comments

Comments
 (0)