f040417440
* Support custom config file names & paths * Fix entry point paths on windows * Support custom conditions Add support for custom conditions (for bundling and running), to support being able to import `ai/rsc` with the “react-server” condition. - Fixed an issue where symlinking unresolvable externals after rebuilding caused the build to hang - Fixed an issue with external not working with subpath exports (e.g. “ai” would not match “ai/rsc”) - Protect better against build extensions breaking builds * Add changeset * Fix passing CLI process.env down to the task processes * Remove unused import * reviving the e2e CLI tests * Another attempt at fixing windows * yet another windows attempt (yawa) * Output index child stdout and stderr (yawa) * normalize import paths for windows * Added some logging (yawa) * normalize the loader path as well * Added some logging to figure out why the entry points aren’t being found on windows * Fix for entry point detection on windows * Normalize runner import loader path * Normalize import paths in dev and make sure rewritten build manifest paths are correct on windows as well * Various cleanup after windows fixes * Remove the webapp e2e for now * Add node10 type resolution support for subpath exports (still does not actually import in Node 10 or Browserify/Parcel) https://github.com/andrewbranch/example-subpath-exports-ts-compat * init using templates again but downloaded from the repo this time * Adding init schedule example * Support for js init * init now working with js * Fix issues with links in terminals that don’t support them. Also skip update check of version starts with 0.0.0
144 lines
2.3 KiB
JSON
144 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
"public/build/**",
|
|
"build/**",
|
|
"app/styles/tailwind.css",
|
|
".cache"
|
|
]
|
|
},
|
|
"build:db:seed": {
|
|
"outputs": [
|
|
"prisma/seed.js"
|
|
]
|
|
},
|
|
"webapp#start": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"public/build/**"
|
|
]
|
|
},
|
|
"start": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"public/build/**"
|
|
]
|
|
},
|
|
"db:generate": {
|
|
"cache": false
|
|
},
|
|
"db:migrate:deploy": {
|
|
"cache": false
|
|
},
|
|
"db:seed": {
|
|
"cache": false,
|
|
"dependsOn": [
|
|
"build:db:seed"
|
|
]
|
|
},
|
|
"db:studio": {
|
|
"cache": false
|
|
},
|
|
"db:populate": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"i:dev": {
|
|
"cache": false
|
|
},
|
|
"generate": {
|
|
"dependsOn": [
|
|
"^generate"
|
|
]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"docker:build": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:dev": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"test:e2e:dev": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"test:e2e:ci": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"check-exports": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"clean:sourcemaps": {
|
|
"cache": false
|
|
},
|
|
"storybook": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": [
|
|
".env"
|
|
],
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"REMIX_APP_PORT",
|
|
"CI",
|
|
"DATABASE_URL",
|
|
"DIRECT_URL",
|
|
"SESSION_SECRET",
|
|
"APP_ORIGIN",
|
|
"LOGIN_ORIGIN",
|
|
"POSTHOG_PROJECT_KEY",
|
|
"MAGIC_LINK_SECRET",
|
|
"AUTH_GITHUB_CLIENT_ID",
|
|
"AUTH_GITHUB_CLIENT_SECRET",
|
|
"FROM_EMAIL",
|
|
"REPLY_TO_EMAIL",
|
|
"RESEND_API_KEY",
|
|
"DEBUG",
|
|
"TRIGGER_LOG_LEVEL",
|
|
"TRIGGER_API_KEY",
|
|
"TRIGGER_API_URL",
|
|
"APP_ENV",
|
|
"APP_LOG_LEVEL"
|
|
]
|
|
} |