refactor(project): Renamed all instances of dafa to msfa or mina-sidor-fa. (TV-379)
Squashed commit of the following: commit d3f52ff6876f6e246c7d3c188e56cc2370289341 Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se> Date: Tue Aug 17 14:10:38 2021 +0200 Renamed all dafa instances to msfa
This commit is contained in:
64
angular.json
64
angular.json
@@ -3,7 +3,7 @@
|
||||
"cli": {
|
||||
"defaultCollection": "@nrwl/angular"
|
||||
},
|
||||
"defaultProject": "dafa-web",
|
||||
"defaultProject": "mina-sidor-fa",
|
||||
"schematics": {
|
||||
"@nrwl/angular": {
|
||||
"application": {
|
||||
@@ -33,25 +33,25 @@
|
||||
}
|
||||
},
|
||||
"projects": {
|
||||
"dafa-web": {
|
||||
"mina-sidor-fa": {
|
||||
"projectType": "application",
|
||||
"root": "apps/dafa-web",
|
||||
"sourceRoot": "apps/dafa-web/src",
|
||||
"prefix": "dafa",
|
||||
"root": "apps/mina-sidor-fa",
|
||||
"sourceRoot": "apps/mina-sidor-fa/src",
|
||||
"prefix": "msfa",
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:browser",
|
||||
"options": {
|
||||
"outputPath": "dist/apps/dafa-web",
|
||||
"index": "apps/dafa-web/src/index.html",
|
||||
"main": "apps/dafa-web/src/main.ts",
|
||||
"polyfills": "apps/dafa-web/src/polyfills.ts",
|
||||
"tsConfig": "apps/dafa-web/tsconfig.app.json",
|
||||
"outputPath": "dist/apps/mina-sidor-fa",
|
||||
"index": "apps/mina-sidor-fa/src/index.html",
|
||||
"main": "apps/mina-sidor-fa/src/main.ts",
|
||||
"polyfills": "apps/mina-sidor-fa/src/polyfills.ts",
|
||||
"tsConfig": "apps/mina-sidor-fa/tsconfig.app.json",
|
||||
"aot": true,
|
||||
"assets": ["apps/dafa-web/src/assets"],
|
||||
"styles": ["apps/dafa-web/src/styles/styles.scss"],
|
||||
"assets": ["apps/mina-sidor-fa/src/assets"],
|
||||
"styles": ["apps/mina-sidor-fa/src/styles/styles.scss"],
|
||||
"stylePreprocessorOptions": {
|
||||
"includePaths": ["apps/dafa-web/src/styles"]
|
||||
"includePaths": ["apps/mina-sidor-fa/src/styles"]
|
||||
},
|
||||
"scripts": ["node_modules/marked/lib/marked.js"]
|
||||
},
|
||||
@@ -59,8 +59,8 @@
|
||||
"production": {
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "apps/dafa-web/src/environments/environment.ts",
|
||||
"with": "apps/dafa-web/src/environments/environment.prod.ts"
|
||||
"replace": "apps/mina-sidor-fa/src/environments/environment.ts",
|
||||
"with": "apps/mina-sidor-fa/src/environments/environment.prod.ts"
|
||||
}
|
||||
],
|
||||
"optimization": true,
|
||||
@@ -86,8 +86,8 @@
|
||||
"api": {
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "apps/dafa-web/src/environments/environment.ts",
|
||||
"with": "apps/dafa-web/src/environments/environment.api.ts"
|
||||
"replace": "apps/mina-sidor-fa/src/environments/environment.ts",
|
||||
"with": "apps/mina-sidor-fa/src/environments/environment.api.ts"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -96,15 +96,15 @@
|
||||
"serve": {
|
||||
"builder": "@angular-devkit/build-angular:dev-server",
|
||||
"options": {
|
||||
"browserTarget": "dafa-web:build",
|
||||
"browserTarget": "mina-sidor-fa:build",
|
||||
"proxyConfig": "./config/proxy.conf.json"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"browserTarget": "dafa-web:build:production"
|
||||
"browserTarget": "mina-sidor-fa:build:production"
|
||||
},
|
||||
"api": {
|
||||
"browserTarget": "dafa-web:build:api",
|
||||
"browserTarget": "mina-sidor-fa:build:api",
|
||||
"proxyConfig": "./config/proxy.conf.api.json"
|
||||
}
|
||||
}
|
||||
@@ -112,47 +112,47 @@
|
||||
"extract-i18n": {
|
||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"browserTarget": "dafa-web:build"
|
||||
"browserTarget": "mina-sidor-fa:build"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"builder": "@nrwl/linter:eslint",
|
||||
"options": {
|
||||
"lintFilePatterns": ["apps/dafa-web/src/**/*.ts", "apps/dafa-web/src/**/*.html"]
|
||||
"lintFilePatterns": ["apps/mina-sidor-fa/src/**/*.ts", "apps/mina-sidor-fa/src/**/*.html"]
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"builder": "@nrwl/jest:jest",
|
||||
"outputs": ["coverage/apps/dafa-web"],
|
||||
"outputs": ["coverage/apps/mina-sidor-fa"],
|
||||
"options": {
|
||||
"jestConfig": "apps/dafa-web/jest.config.js",
|
||||
"jestConfig": "apps/mina-sidor-fa/jest.config.js",
|
||||
"passWithNoTests": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"dafa-web-e2e": {
|
||||
"root": "apps/dafa-web-e2e",
|
||||
"sourceRoot": "apps/dafa-web-e2e/src",
|
||||
"mina-sidor-fa-e2e": {
|
||||
"root": "apps/mina-sidor-fa-e2e",
|
||||
"sourceRoot": "apps/mina-sidor-fa-e2e/src",
|
||||
"projectType": "application",
|
||||
"architect": {
|
||||
"e2e": {
|
||||
"builder": "@nrwl/cypress:cypress",
|
||||
"options": {
|
||||
"cypressConfig": "apps/dafa-web-e2e/cypress.json",
|
||||
"tsConfig": "apps/dafa-web-e2e/tsconfig.e2e.json",
|
||||
"devServerTarget": "dafa-web:serve"
|
||||
"cypressConfig": "apps/mina-sidor-fa-e2e/cypress.json",
|
||||
"tsConfig": "apps/mina-sidor-fa-e2e/tsconfig.e2e.json",
|
||||
"devServerTarget": "mina-sidor-fa:serve"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"devServerTarget": "dafa-web:serve:production"
|
||||
"devServerTarget": "mina-sidor-fa:serve:production"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"builder": "@nrwl/linter:eslint",
|
||||
"options": {
|
||||
"lintFilePatterns": ["apps/dafa-web-e2e/**/*.{js,ts}"]
|
||||
"lintFilePatterns": ["apps/mina-sidor-fa-e2e/**/*.{js,ts}"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user