refactor: build system

This commit is contained in:
2023-03-22 11:45:30 +01:00
parent 4df19e8c20
commit 8cb9285462
427 changed files with 3978 additions and 9810 deletions

View File

@@ -4,18 +4,23 @@
"scripts": {
"build": "dotenv -c -- turbo run build",
"dev": "dotenv -c -- turbo run dev",
"docs": "typedoc",
"format": "dotenv -c -- turbo run format",
"format:fix": "dotenv -c -- turbo run format:fix",
"lint": "dotenv -c -- turbo run lint",
"lint:fix": "dotenv -c -- turbo run lint:fix",
"publish-packages": "dotenv -c -- turbo run build format lint test && changeset version && changeset publish",
"syncpack": "syncpack list-mismatches && syncpack lint-semver-ranges",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"publish-packages": "dotenv -c -- turbo run build format lint test && changeset version && changeset publish"
"syncpack:fix": "node sync.mjs && syncpack format && syncpack fix-mismatches"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"deepmerge": "4.3.1",
"dotenv-cli": "7.1.0",
"glob": "10.2.1",
"package-sync-cli": "1.3.2",
"syncpack": "9.8.4",
"turbo": "1.8.3",
"@changesets/cli": "2.26.0"
"typedoc": "0.23.28"
}
}