AFFiNE/nx.json

105 lines
2.2 KiB
JSON
Raw Normal View History

{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "toeverything",
"tasksRunnerOptions": {
"default": {
2023-06-17 14:36:55 +03:00
"runner": "nx-cloud",
"options": {
2023-06-17 14:36:55 +03:00
"cacheableOperations": ["build", "test"],
"accessToken": "YmQ2NTg1ODktZTk5Mi00YzhiLTk2ZmUtNWQzMDg0NDBkOWM3fHJlYWQtb25seQ=="
}
}
},
"affected": {
"defaultBase": "master"
},
"namedInputs": {
2023-06-12 07:05:00 +03:00
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [
"{workspaceRoot}/tsconfig.json",
"{workspaceRoot}/nx.json"
],
"production": ["default"]
},
"targetDefaults": {
"build": {
2023-06-12 08:06:23 +03:00
"dependsOn": ["^build"],
2023-06-19 06:13:59 +03:00
"outputs": [
"{projectRoot}/dist",
"{projectRoot}/build",
"{projectRoot}/out",
"{projectRoot}/node_modules/.cache",
2023-06-20 08:41:58 +03:00
"{projectRoot}/target",
"{workspaceRoot}/apps/web/.next",
"{workspaceRoot}/packages/storybook/storybook-static",
2023-06-20 13:08:48 +03:00
"{workspaceRoot}/packages/native/affine.*.node",
"{workspaceRoot}/affine.db"
2023-06-19 06:13:59 +03:00
],
2023-06-12 08:06:23 +03:00
"inputs": [
{
"runtime": "node -v"
},
{
"env": "ENABLE_BOOKMARK_OPERATION"
},
{
"env": "ENABLE_PLUGIN"
},
{
"env": "ENABLE_ALL_PAGE_FILTER"
},
{
"env": "ENABLE_TEST_PROPERTIES"
},
{
"env": "ENABLE_LEGACY_PROVIDER"
},
{
"env": "ENABLE_BC_PROVIDER"
},
{
"env": "ENABLE_DEBUG_PAGE"
},
{
"env": "CHANGELOG_URL"
},
{
"env": "ENABLE_PRELOADING"
},
{
"env": "API_SERVER_PROFILE"
}
]
},
"e2e": {
2023-06-12 08:06:23 +03:00
"dependsOn": ["^build"],
"inputs": [
2023-06-17 14:36:55 +03:00
{
"runtime": "node -v"
},
{
"runtime": "yarn playwright --version"
}
2023-06-12 08:06:23 +03:00
]
},
2023-06-19 18:07:40 +03:00
"export": {
"dependsOn": ["build"]
},
2023-06-16 09:50:42 +03:00
"dev": {
"dependsOn": ["^build"]
},
"e2e:coverage": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
"test:ui": {
"dependsOn": ["^build"]
},
"test:coverage": {
"dependsOn": ["^build"]
}
}
}