build(scripts): add lint scripts to all, turbo lint tasks [skip ci]

This commit is contained in:
Elliot DeNolf
2024-08-28 21:55:34 -04:00
parent e375f6e727
commit 828f5d866d
36 changed files with 92 additions and 15 deletions

View File

@@ -78,8 +78,8 @@
"clean": "rimraf {dist,*.tsbuildinfo}",
"clean:cache": "rimraf node_modules/.cache",
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
"fix": "eslint \"src/**/*.ts\" --fix",
"lint": "eslint \"src/**/*.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm clean && pnpm turbo build",
"pretest": "pnpm build"
},