mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-15 17:16:16 +08:00
48 lines
942 B
JSON
48 lines
942 B
JSON
{
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
"npmScope": "toeverything",
|
|
"tasksRunnerOptions": {
|
|
"default": {
|
|
"runner": "nx/tasks-runners/default",
|
|
"options": {
|
|
"cacheableOperations": ["build", "test"]
|
|
}
|
|
}
|
|
},
|
|
"affected": {
|
|
"defaultBase": "master"
|
|
},
|
|
"implicitDependencies": {
|
|
"package.json": {
|
|
"dependencies": "*",
|
|
"devDependencies": "*"
|
|
},
|
|
"tsconfig.json": "*",
|
|
"nx.json": "*"
|
|
},
|
|
"namedInputs": {
|
|
"default": ["{projectRoot}/**/*"],
|
|
"production": ["!{projectRoot}/**/*.spec.tsx"]
|
|
},
|
|
"targetDefaults": {
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"e2e": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"e2e:coverage": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test:ui": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test:coverage": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|