mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* integrate cspell with eslint, improved configuration * core: fix linting errors * core: fix lint warnings * content: lint fixes * process service lint fixes * lint: process services cloud * lint: insights * lint: extensions * [ci:force] lint: cli fixes * [ci:force] comment out dead code * [ci:force] exclude dead code * fix code and tests * rollback some changes * fix testing lib * fix demo shell * minor lint warning fixes * minor lint fixes * fix process services
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"npmScope": "adf",
|
|
"implicitDependencies": {
|
|
"angular.json": "*",
|
|
"package.json": {
|
|
"dependencies": {
|
|
"@alfresco/*": "*",
|
|
"@angular/*": "*",
|
|
"rxjs": "*"
|
|
}
|
|
},
|
|
"demo-shell/src/index.html": "*",
|
|
"e2e/protractor.excludes.json": "*",
|
|
"e2e/protractor.conf.js": "*"
|
|
},
|
|
"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"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"stylelint"
|
|
]
|
|
}
|
|
},
|
|
"tasksRunnerOptions": {
|
|
"default": {
|
|
"runner": "nx/tasks-runners/default",
|
|
"options": {
|
|
"cacheableOperations": ["build", "lint", "test", "stylelint"],
|
|
"cacheDirectory": "nxcache",
|
|
"runtimeCacheInputs": ["node -v"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|