tracker: yarn -> bun

This commit is contained in:
nick-delirium 2025-03-31 11:15:38 +02:00
parent 4ee78e1a5c
commit 685741f039
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
7 changed files with 2203 additions and 5 deletions

View file

@ -1 +0,0 @@
nodeLinker: node-modules

File diff suppressed because it is too large Load diff

View file

@ -54,5 +54,5 @@
"eslint --fix --quiet"
]
},
"packageManager": "yarn@4.6.0"
"packageManager": "bun@1.2.7"
}

View file

@ -1 +0,0 @@
nodeLinker: node-modules

1047
tracker/tracker/bun.lock Normal file

File diff suppressed because it is too large Load diff

View file

@ -43,7 +43,7 @@
"build:common": "tsc -b src/common",
"compile": "tsc --project src/main/tsconfig.json",
"create-types": "mkdir dist/lib/ dist/cjs && cp -r dist/types/* dist/lib/ && cp -r dist/types/* dist/cjs/",
"build": "yarn run clean && yarn compile && yarn create-types && rollup --config rollup.config.js",
"build": "bun run clean && bun compile && bun create-types && rollup --config rollup.config.js",
"lint-front": "lint-staged",
"test": "jest --coverage=false",
"test:ci": "jest --coverage=true",
@ -85,5 +85,5 @@
"engines": {
"node": ">=14.0"
},
"packageManager": "yarn@4.6.0"
"packageManager": "bun@1.2.7"
}