* chore(deps): add lerna-lite * feat: update-1 * feat(db-mongodb): update 2 * chore: lerna init * chore: add version option to lerna config * chore(ci): add gh usernames to changelog and user root package.json for version * chore(ci): whitelist poc branches * chore(ci): add contributors section * chore(ci): use turbo for prepublishOnly scripts, enable caching * chore(deps): update turborepo, add execa * feat(plugin-stripe): adjust type import * chore: remove lerna-lite * chore(ci): new and improved release script for fixed versioning * chore: remove unused lerna-lite packages * chore: sync root package.json version * chore: remove remnants of bundler packages * chore(plugin-seo): update packagea.json from main, disable build * chore: disable turbo caching * chore(ci): update release script * chore: sync pnpm-lock.yaml * chore: ci cleanup
21 lines
342 B
JSON
21 lines
342 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"clean": {
|
|
"dependsOn": ["^clean"]
|
|
},
|
|
"build": {
|
|
"cache": false,
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["./dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"cache": false,
|
|
"dependsOn": ["^lint"]
|
|
}
|
|
}
|
|
}
|