mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"npmScope": "adf",
|
|
"cli": {
|
|
"defaultCollection": "@nrwl/angular"
|
|
},
|
|
"defaultProject": "demoshell",
|
|
"targetDependencies": {
|
|
"build": [
|
|
{
|
|
"target": "build",
|
|
"projects": "dependencies"
|
|
}
|
|
]
|
|
},
|
|
"affected": {
|
|
"defaultBase": "develop"
|
|
},
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
"targetDefaults": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["production", "^production"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["stylelint"]
|
|
},
|
|
"build-storybook": {
|
|
"inputs": ["default", "^production", "{workspaceRoot}/.storybook/**/*"]
|
|
},
|
|
"test": {
|
|
"inputs": ["default", "^production"]
|
|
}
|
|
},
|
|
"tasksRunnerOptions": {
|
|
"default": {
|
|
"runner": "nx/tasks-runners/default",
|
|
"options": {
|
|
"cacheableOperations": ["build", "lint", "test", "stylelint"],
|
|
"cacheDirectory": "nxcache",
|
|
"runtimeCacheInputs": ["node -v"]
|
|
}
|
|
}
|
|
},
|
|
"namedInputs": {
|
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
|
"sharedGlobals": [
|
|
"{workspaceRoot}/angular.json",
|
|
"{workspaceRoot}/demo-shell/src/index.html",
|
|
"{workspaceRoot}/e2e/protractor.excludes.json",
|
|
"{workspaceRoot}/e2e/protractor.conf.js"
|
|
],
|
|
"production": [
|
|
"default",
|
|
"!{projectRoot}/.storybook/**/*",
|
|
"!{projectRoot}/**/*.stories.@(js|jsx|ts|tsx|mdx)",
|
|
"!{projectRoot}/**/*.spec.[jt]s",
|
|
"!{projectRoot}/tsconfig.spec.json",
|
|
"!{projectRoot}/karma.conf.js"
|
|
]
|
|
}
|
|
}
|