mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-09-02 08:09:19 +08:00
Split angular.json file and add merge-angular-json command
This commit is contained in:
parent
7c9c206682
commit
448ef660b0
8 changed files with 406 additions and 177 deletions
183
core/angular/base-angular.json
Normal file
183
core/angular/base-angular.json
Normal file
|
@ -0,0 +1,183 @@
|
|||
{
|
||||
"$schema": "node_modules/@angular/cli/lib/config/schema.json",
|
||||
"version": 1,
|
||||
"newProjectRoot": "core/app",
|
||||
"projects": {
|
||||
"shell": {
|
||||
"root": "core/app/shell",
|
||||
"sourceRoot": "core/app/shell/src",
|
||||
"projectType": "application",
|
||||
"prefix": "scrm",
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "ngx-build-plus:browser",
|
||||
"options": {
|
||||
"namedChunks": true,
|
||||
"commonChunk": false,
|
||||
"sourceMap": true,
|
||||
"aot": true,
|
||||
"outputPath": "public/dist/",
|
||||
"index": "core/app/shell/src/index.html",
|
||||
"main": "core/app/shell/src/main.ts",
|
||||
"polyfills": "core/app/shell/src/polyfills.ts",
|
||||
"tsConfig": "core/app/shell/tsconfig.app.json",
|
||||
"scripts": [
|
||||
"node_modules/tinymce/tinymce.min.js"
|
||||
],
|
||||
"styles": [
|
||||
"node_modules/bootstrap-css-only/css/bootstrap.min.css",
|
||||
"core/app/shell/src/themes/suite8/css/style.scss",
|
||||
"node_modules/primeng/resources/themes/bootstrap4-light-blue/theme.css",
|
||||
"node_modules/primeng/resources/primeng.min.css"
|
||||
],
|
||||
"stylePreprocessorOptions": {
|
||||
"includePaths": [
|
||||
"core/app/shell/src/themes/*/css"
|
||||
]
|
||||
},
|
||||
"deployUrl": "dist/",
|
||||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "core/app/shell/src/themes",
|
||||
"ignore": [
|
||||
"**/*.scss"
|
||||
],
|
||||
"output": "/themes/"
|
||||
},
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "node_modules/tinymce",
|
||||
"output": "/tinymce/"
|
||||
}
|
||||
],
|
||||
"allowedCommonJsDependencies": [
|
||||
"graphql-tag",
|
||||
"zen-observable",
|
||||
"seedrandom"
|
||||
],
|
||||
"extraWebpackConfig": "core/app/shell/webpack.config.js"
|
||||
},
|
||||
"configurations": {
|
||||
"serve": {
|
||||
"budgets": [
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
"maximumWarning": "6kb"
|
||||
}
|
||||
],
|
||||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "core/app/shell/src/themes",
|
||||
"output": "public/dist/themes"
|
||||
}
|
||||
]
|
||||
},
|
||||
"production": {
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "core/app/shell/src/environments/environment.ts",
|
||||
"with": "core/app/shell/src/environments/environment.prod.ts"
|
||||
}
|
||||
],
|
||||
"optimization": true,
|
||||
"outputHashing": "all",
|
||||
"sourceMap": false,
|
||||
"namedChunks": true,
|
||||
"extractLicenses": true,
|
||||
"vendorChunk": false,
|
||||
"buildOptimizer": true,
|
||||
"budgets": [
|
||||
{
|
||||
"type": "initial",
|
||||
"maximumWarning": "2mb",
|
||||
"maximumError": "5mb"
|
||||
},
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
"maximumWarning": "6kb",
|
||||
"maximumError": "10kb"
|
||||
}
|
||||
],
|
||||
"extraWebpackConfig": "core/app/shell/webpack.prod.config.js"
|
||||
}
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"builder": "ngx-build-plus:karma",
|
||||
"options": {
|
||||
"main": "core/app/shell/src/test.ts",
|
||||
"polyfills": "core/app/shell/src/polyfills.ts",
|
||||
"tsConfig": "core/app/shell/tsconfig.spec.json",
|
||||
"karmaConfig": "core/app/shell/karma.conf.js",
|
||||
"styles": [
|
||||
"node_modules/bootstrap-css-only/css/bootstrap.min.css",
|
||||
"core/app/shell/src/themes/suite8/css/style.scss"
|
||||
],
|
||||
"scripts": [],
|
||||
"assets": [
|
||||
"core/app/shell/src/themes"
|
||||
],
|
||||
"extraWebpackConfig": "core/app/shell/webpack.config.spec.js"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"builder": "@angular-eslint/builder:lint",
|
||||
"options": {
|
||||
"eslintConfig": "./.eslintrc.js",
|
||||
"tsConfig": "core/app/shell/tsconfig.app.json",
|
||||
"fix": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core": {
|
||||
"projectType": "library",
|
||||
"root": "core/app/core",
|
||||
"sourceRoot": "core/app/core/src",
|
||||
"prefix": "lib",
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:ng-packagr",
|
||||
"options": {
|
||||
"tsConfig": "core/app/core/tsconfig.lib.json",
|
||||
"project": "core/app/core/ng-package.json"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"tsConfig": "core/app/core/tsconfig.lib.prod.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"builder": "ngx-build-plus:karma",
|
||||
"options": {
|
||||
"main": "core/app/core/src/test.ts",
|
||||
"tsConfig": "core/app/core/tsconfig.spec.json",
|
||||
"karmaConfig": "core/app/core/karma.conf.js",
|
||||
"styles": [
|
||||
"node_modules/bootstrap-css-only/css/bootstrap.min.css"
|
||||
],
|
||||
"scripts": [],
|
||||
"assets": [],
|
||||
"extraWebpackConfig": "core/app/core/webpack.config.spec.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schematics": {
|
||||
"@schematics/angular:component": {
|
||||
"prefix": "app",
|
||||
"style": "scss"
|
||||
},
|
||||
"@schematics/angular:directive": {
|
||||
"prefix": "app"
|
||||
}
|
||||
},
|
||||
"cli": {
|
||||
"packageManager": "yarn",
|
||||
"analytics": false
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue