tracker: drop mentions of lint-staged

This commit is contained in:
nick-delirium 2025-04-15 14:42:55 +02:00
parent c8483df795
commit ced855568f
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
2 changed files with 0 additions and 7 deletions

View file

@ -22,7 +22,6 @@
"replace-pkg-version": "sh pkgver.sh", "replace-pkg-version": "sh pkgver.sh",
"replace-req-version": "replace-in-files lib/* cjs/* --string='REQUIRED_TRACKER_VERSION' --replacement='14.0.14'", "replace-req-version": "replace-in-files lib/* cjs/* --string='REQUIRED_TRACKER_VERSION' --replacement='14.0.14'",
"prepublishOnly": "bun run test && bun run build", "prepublishOnly": "bun run test && bun run build",
"lint-front": "lint-staged",
"test": "jest --coverage=false", "test": "jest --coverage=false",
"test:ci": "jest --coverage=true", "test:ci": "jest --coverage=true",
"postversion": "bun run build" "postversion": "bun run build"
@ -49,10 +48,5 @@
"ts-jest": "^29.2.5", "ts-jest": "^29.2.5",
"typescript": "^5.6.3" "typescript": "^5.6.3"
}, },
"lint-staged": {
"*.{js,mjs,cjs,jsx,ts,tsx}": [
"eslint --fix --quiet"
]
},
"packageManager": "bun@1.2.7" "packageManager": "bun@1.2.7"
} }

View file

@ -44,7 +44,6 @@
"compile": "tsc --project src/main/tsconfig.json", "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/", "create-types": "mkdir dist/lib/ dist/cjs && cp -r dist/types/* dist/lib/ && cp -r dist/types/* dist/cjs/",
"build": "bun run clean && bun compile && bun 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": "jest --coverage=false",
"test:ci": "jest --coverage=true", "test:ci": "jest --coverage=true",
"postversion": "bun run build", "postversion": "bun run build",