mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
* AAE-38957 Cleanup code from color assignments on Material elements (#11266) * AAE-38646 cleanup core lib from custom variables (#11259) * AAE-38646 General cleanup of custom variables from core lib * AAE-38646 Cleanup some of the remaining variables * AAE-38646 Last color-mix removal * AAE-38646 Reduce amount of customizations * AAE-38646 apply overrides, reduce customization * AAE-38646 modify remaining styles * AAE-38646 Fix override assignemnts * AAE-38646 Address comments, cleanup unused * AAE-38978 Cleanup process-services-cloud lib from custom css variables (#11295) * AAE-38978 Cleanup custom variables inside process-services-cloud lib * AAE-38978 Adjust rich text widget styling * AAE-38978 Comment fixes * AAE-38980 Cleanup insights lib from custom css variables (#11314) * AAE-38980 Cleanup insights lib from custom css variables * AAE-38980 Removed unnecessarily specific selector * AAE-38979 Cleanup content-services lib from custom css variables (#11313) * AAE-38979 Remove/replace variable and hardcoded customizations * AAE-38979 Cleanup unused @use and @import statements * AAE-39159 Cleanup process-services lib from custom css variables (#11316) * AAE-39159 Cleanup process-services lib from custom css variables * AAE-39159 Fix import and build * Fix build * Remove leftover button customization * fix missing brace * AAE-39748 Pagination font size match md3 * fix incorrect html templates after rebase * swap leftover variables * fix units * copilot comments * visual regression result fixes * CSX-204 Update card view components (#11358) * CSX-535 Update background color on readonly for card view selectitem (#11799) * remove invalid color test * add stylelint rule --------- Co-authored-by: Ehsan Rezaei <ehsan.rezaei@hyland.com> Co-authored-by: Ricardo Dias <ricardo.dias@hyland.com>
104 lines
2.8 KiB
JSON
104 lines
2.8 KiB
JSON
{
|
|
"name": "core",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "library",
|
|
"sourceRoot": "lib/core",
|
|
"prefix": "adf",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@angular-devkit/build-angular:ng-packagr",
|
|
"options": {
|
|
"tsConfig": "lib/core/tsconfig.lib.json",
|
|
"project": "lib/core/ng-package.json"
|
|
},
|
|
"dependsOn": ["^build", "license"],
|
|
"configurations": {
|
|
"production": {
|
|
"project": "lib/core/ng-package.json",
|
|
"tsConfig": "lib/core/tsconfig.lib.prod.json"
|
|
},
|
|
"development": {
|
|
"tsConfig": "lib/core/tsconfig.lib.json"
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"build-schematics": {
|
|
"executor": "@nx/js:tsc",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"outputPath": "dist/libs/core/schematics/migrations",
|
|
"main": "lib/core/schematics/migrations/index.ts",
|
|
"tsConfig": "lib/core/tsconfig.schematics.json",
|
|
"assets": ["lib/core/schematics/migrations/collection.json"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@angular-devkit/build-angular:karma",
|
|
"options": {
|
|
"main": "lib/core/test.ts",
|
|
"tsConfig": "lib/core/tsconfig.spec.json",
|
|
"karmaConfig": "lib/core/karma.conf.js",
|
|
"sourceMap": true,
|
|
"codeCoverage": true,
|
|
"stylePreprocessorOptions": {
|
|
"includePaths": ["lib", "lib/core/src/lib"]
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"lib/core/**/*.ts",
|
|
"lib/core/**/*.html",
|
|
"lib/core/api/**/*.ts",
|
|
"lib/core/api/**/*.html",
|
|
"lib/core/auth/**/*.ts",
|
|
"lib/core/auth/**/*.html",
|
|
"lib/core/shell/**/*.ts",
|
|
"lib/core/shell/**/*.html",
|
|
"lib/core/breadcrumbs/**/*.ts",
|
|
"lib/core/breadcrumbs/**/*.html"
|
|
]
|
|
}
|
|
},
|
|
"stylelint": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
{
|
|
"command": "stylelint \"lib/core/**/*.scss\" --config .stylelintrc.json"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"license": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
{
|
|
"command": "license-checker --production --failOn 'GPL;GPL-2.0' > licenses.txt"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"npm-publish": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": ["build", "build-schematics"],
|
|
"options": {
|
|
"cwd": "dist/libs/core",
|
|
"commands": [
|
|
{
|
|
"command": "npm publish --tag {args.tag}",
|
|
"forwardAllArgs": true
|
|
}
|
|
],
|
|
"stylePreprocessorOptions": {
|
|
"includePaths": ["lib", "lib/core/src/lib"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|