Skip to content
Snippets Groups Projects
Commit ed1b276b authored by OZGCloud's avatar OZGCloud
Browse files

dependencies update

parent 3597169f
No related branches found
No related tags found
No related merge requests found
Showing
with 446 additions and 488 deletions
...@@ -39,148 +39,6 @@ ...@@ -39,148 +39,6 @@
} }
}, },
"projects": { "projects": {
"goofy": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "apps/goofy",
"sourceRoot": "apps/goofy/src",
"prefix": "goofy-client",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"allowedCommonJsDependencies": ["file-saver"],
"outputPath": "dist/apps/goofy",
"index": "apps/goofy/src/index.html",
"main": "apps/goofy/src/main.ts",
"polyfills": "apps/goofy/src/polyfills.ts",
"tsConfig": "apps/goofy/tsconfig.app.json",
"assets": [
"apps/goofy/src/assets",
"apps/goofy/src/silent-refresh.html",
{
"input": "apps/goofy/src/favicon",
"glob": "**/*",
"output": ""
},
{
"input": "libs/ui/src/lib/assets",
"glob": "**/*",
"output": "assets/icons"
}
],
"styles": ["apps/goofy/src/styles/main.scss"],
"scripts": [],
"stylePreprocessorOptions": {
"includePaths": ["apps/goofy/src/styles/abstracts"]
},
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "apps/goofy/src/environments/environment.ts",
"with": "apps/goofy/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
},
"outputs": ["{options.outputPath}"]
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "goofy:build"
},
"configurations": {
"production": {
"browserTarget": "goofy:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "goofy:build"
}
},
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"apps/goofy/src/**/*.ts",
"apps/goofy/src/**/*.html"
]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "apps/goofy/jest.config.js",
"passWithNoTests": true
},
"outputs": ["coverage/apps/goofy"]
}
}
},
"goofy-e2e": {
"root": "apps/goofy-e2e",
"sourceRoot": "apps/goofy-e2e/src",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/goofy-e2e/cypress.json",
"tsConfig": "apps/goofy-e2e/tsconfig.e2e.json",
"devServerTarget": "goofy:serve"
},
"configurations": {
"production": {
"devServerTarget": "goofy:serve:production"
}
}
},
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"apps/goofy-e2e/**/*.{js,ts}",
"apps/goofy-e2e/src/**/*.html"
]
}
}
}
},
"api-root-shared": { "api-root-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/api-root-shared", "root": "libs/api-root-shared",
...@@ -211,28 +69,28 @@ ...@@ -211,28 +69,28 @@
} }
} }
}, },
"environment-shared": { "app-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/environment-shared", "root": "libs/app-shared",
"sourceRoot": "libs/environment-shared/src", "sourceRoot": "libs/app-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/environment-shared/src/**/*.ts", "libs/app-shared/src/**/*.ts",
"libs/environment-shared/src/**/*.html" "libs/app-shared/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"options": { "options": {
"jestConfig": "libs/environment-shared/jest.config.js", "jestConfig": "libs/app-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
}, },
"outputs": ["coverage/libs/environment-shared"] "outputs": ["coverage/libs/app-shared"]
} }
}, },
"schematics": { "schematics": {
...@@ -241,85 +99,78 @@ ...@@ -241,85 +99,78 @@
} }
} }
}, },
"tech-shared": { "binary-file": {
"projectType": "library", "projectType": "library",
"root": "libs/tech-shared", "root": "libs/binary-file",
"sourceRoot": "libs/tech-shared/src", "sourceRoot": "libs/binary-file/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/tech-shared/src/**/*.ts",
"libs/tech-shared/src/**/*.html"
]
}
},
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/binary-file"],
"options": { "options": {
"jestConfig": "libs/tech-shared/jest.config.js", "jestConfig": "libs/binary-file/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/tech-shared"]
} }
}, },
"schematics": { "lint": {
"@schematics/angular:component": { "builder": "@nrwl/linter:eslint",
"style": "scss" "options": {
"lintFilePatterns": [
"libs/binary-file/src/**/*.ts",
"libs/binary-file/src/**/*.html"
]
}
} }
} }
}, },
"ui": { "binary-file-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/ui", "root": "libs/binary-file-shared",
"sourceRoot": "libs/ui/src", "sourceRoot": "libs/binary-file-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/ui/src/**/*.ts", "libs/ui/src/**/*.html"]
}
},
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/binary-file-shared"],
"options": { "options": {
"jestConfig": "libs/ui/jest.config.js", "jestConfig": "libs/binary-file-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/ui"]
} }
}, },
"schematics": { "lint": {
"@schematics/angular:component": { "builder": "@nrwl/linter:eslint",
"style": "scss" "options": {
"lintFilePatterns": [
"libs/binary-file-shared/src/**/*.ts",
"libs/binary-file-shared/src/**/*.html"
]
}
} }
} }
}, },
"vorgang-shared": { "command-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/vorgang-shared", "root": "libs/command-shared",
"sourceRoot": "libs/vorgang-shared/src", "sourceRoot": "libs/command-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/vorgang-shared/src/**/*.ts", "libs/command-shared/src/**/*.ts",
"libs/vorgang-shared/src/**/*.html" "libs/command-shared/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"options": { "options": {
"jestConfig": "libs/vorgang-shared/jest.config.js", "jestConfig": "libs/command-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
}, },
"outputs": ["coverage/libs/vorgang-shared"] "outputs": ["coverage/libs/command-shared"]
} }
}, },
"schematics": { "schematics": {
...@@ -328,28 +179,28 @@ ...@@ -328,28 +179,28 @@
} }
} }
}, },
"vorgang": { "environment-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/vorgang", "root": "libs/environment-shared",
"sourceRoot": "libs/vorgang/src", "sourceRoot": "libs/environment-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/vorgang/src/**/*.ts", "libs/environment-shared/src/**/*.ts",
"libs/vorgang/src/**/*.html" "libs/environment-shared/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"options": { "options": {
"jestConfig": "libs/vorgang/jest.config.js", "jestConfig": "libs/environment-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
}, },
"outputs": ["coverage/libs/vorgang"] "outputs": ["coverage/libs/environment-shared"]
} }
}, },
"schematics": { "schematics": {
...@@ -358,228 +209,275 @@ ...@@ -358,228 +209,275 @@
} }
} }
}, },
"navigation": { "forwarding": {
"projectType": "library", "projectType": "library",
"root": "libs/navigation", "root": "libs/forwarding",
"sourceRoot": "libs/navigation/src", "sourceRoot": "libs/forwarding/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/navigation/src/**/*.ts", "libs/forwarding/src/**/*.ts",
"libs/navigation/src/**/*.html" "libs/forwarding/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/forwarding"],
"options": { "options": {
"jestConfig": "libs/navigation/jest.config.js", "jestConfig": "libs/forwarding/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/navigation"]
} }
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
} }
} }
}, },
"test-utils": { "forwarding-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/test-utils", "root": "libs/forwarding-shared",
"sourceRoot": "libs/test-utils/src", "sourceRoot": "libs/forwarding-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/test-utils/src/**/*.ts", "libs/forwarding-shared/src/**/*.ts",
"libs/test-utils/src/**/*.html" "libs/forwarding-shared/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/forwarding-shared"],
"options": { "options": {
"jestConfig": "libs/test-utils/jest.config.js", "jestConfig": "libs/forwarding-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
}, }
"outputs": ["coverage/libs/test-utils"] }
} }
}, },
"goofy": {
"projectType": "application",
"schematics": { "schematics": {
"@schematics/angular:component": { "@schematics/angular:component": {
"style": "scss" "style": "scss"
} }
}
}, },
"app-shared": { "root": "apps/goofy",
"projectType": "library", "sourceRoot": "apps/goofy/src",
"root": "libs/app-shared",
"sourceRoot": "libs/app-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "build": {
"builder": "@nrwl/linter:eslint", "builder": "@angular-devkit/build-angular:browser",
"options": { "options": {
"lintFilePatterns": [ "allowedCommonJsDependencies": ["file-saver"],
"libs/app-shared/src/**/*.ts", "outputPath": "dist/apps/goofy",
"libs/app-shared/src/**/*.html" "index": "apps/goofy/src/index.html",
"main": "apps/goofy/src/main.ts",
"polyfills": "apps/goofy/src/polyfills.ts",
"tsConfig": "apps/goofy/tsconfig.app.json",
"assets": [
"apps/goofy/src/assets",
"apps/goofy/src/silent-refresh.html",
{
"input": "apps/goofy/src/favicon",
"glob": "**/*",
"output": ""
},
{
"input": "libs/ui/src/lib/assets",
"glob": "**/*",
"output": "assets/icons"
}
],
"styles": ["apps/goofy/src/styles/main.scss"],
"scripts": [],
"stylePreprocessorOptions": {
"includePaths": ["apps/goofy/src/styles/abstracts"]
},
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "apps/goofy/src/environments/environment.ts",
"with": "apps/goofy/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
] ]
} }
}, },
"test": { "outputs": ["{options.outputPath}"]
"builder": "@nrwl/jest:jest", },
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": { "options": {
"jestConfig": "libs/app-shared/jest.config.js", "browserTarget": "goofy:build"
"passWithNoTests": true
}, },
"outputs": ["coverage/libs/app-shared"] "configurations": {
"production": {
"browserTarget": "goofy:build:production"
} }
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
} }
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "goofy:build"
} }
}, },
"vorgang-detail": {
"projectType": "library",
"root": "libs/vorgang-detail",
"sourceRoot": "libs/vorgang-detail/src",
"prefix": "goofy-client",
"architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/vorgang-detail/src/**/*.ts", "apps/goofy/src/**/*.ts",
"libs/vorgang-detail/src/**/*.html" "apps/goofy/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"options": { "options": {
"jestConfig": "libs/vorgang-detail/jest.config.js", "jestConfig": "apps/goofy/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
}, },
"outputs": ["coverage/libs/vorgang-detail"] "outputs": ["coverage/apps/goofy"]
}
} }
}, },
"schematics": { "goofy-e2e": {
"@schematics/angular:component": { "root": "apps/goofy-e2e",
"style": "scss" "sourceRoot": "apps/goofy-e2e/src",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/goofy-e2e/cypress.json",
"tsConfig": "apps/goofy-e2e/tsconfig.e2e.json",
"devServerTarget": "goofy:serve"
},
"configurations": {
"production": {
"devServerTarget": "goofy:serve:production"
} }
} }
}, },
"command-shared": {
"projectType": "library",
"root": "libs/command-shared",
"sourceRoot": "libs/command-shared/src",
"prefix": "goofy-client",
"architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/command-shared/src/**/*.ts", "apps/goofy-e2e/**/*.{js,ts}",
"libs/command-shared/src/**/*.html" "apps/goofy-e2e/src/**/*.html"
] ]
} }
}
}
}, },
"kommentar": {
"projectType": "library",
"root": "libs/kommentar",
"sourceRoot": "libs/kommentar/src",
"prefix": "goofy-client",
"architect": {
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/kommentar"],
"options": { "options": {
"jestConfig": "libs/command-shared/jest.config.js", "jestConfig": "libs/kommentar/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/command-shared"]
} }
}, },
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
}
},
"wiedervorlage-shared": {
"projectType": "library",
"root": "libs/wiedervorlage-shared",
"sourceRoot": "libs/wiedervorlage-shared/src",
"prefix": "goofy-client",
"architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/wiedervorlage-shared/src/**/*.ts", "libs/kommentar/src/**/*.ts",
"libs/wiedervorlage-shared/src/**/*.html" "libs/kommentar/src/**/*.html"
] ]
} }
},
"test": {
"builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/wiedervorlage-shared"],
"options": {
"jestConfig": "libs/wiedervorlage-shared/jest.config.js",
"passWithNoTests": true
}
} }
} }
}, },
"wiedervorlage": { "kommentar-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/wiedervorlage", "root": "libs/kommentar-shared",
"sourceRoot": "libs/wiedervorlage/src", "sourceRoot": "libs/kommentar-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "test": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/kommentar-shared"],
"options": { "options": {
"lintFilePatterns": [ "jestConfig": "libs/kommentar-shared/jest.config.js",
"libs/wiedervorlage/src/**/*.ts", "passWithNoTests": true
"libs/wiedervorlage/src/**/*.html"
]
} }
}, },
"test": { "lint": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/linter:eslint",
"outputs": ["coverage/libs/wiedervorlage"],
"options": { "options": {
"jestConfig": "libs/wiedervorlage/jest.config.js", "lintFilePatterns": [
"passWithNoTests": true "libs/kommentar-shared/src/**/*.ts",
"libs/kommentar-shared/src/**/*.html"
]
} }
} }
} }
}, },
"ozg-file-shared": { "navigation": {
"projectType": "library", "projectType": "library",
"root": "libs/ozg-file-shared", "root": "libs/navigation",
"sourceRoot": "libs/ozg-file-shared/src", "sourceRoot": "libs/navigation/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/ozg-file-shared/src/**/*.ts", "libs/navigation/src/**/*.ts",
"libs/ozg-file-shared/src/**/*.html" "libs/navigation/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/ozg-file-shared"],
"options": { "options": {
"jestConfig": "libs/ozg-file-shared/jest.config.js", "jestConfig": "libs/navigation/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/navigation"]
} }
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
} }
} }
}, },
...@@ -608,117 +506,129 @@ ...@@ -608,117 +506,129 @@
} }
} }
}, },
"forwarding-shared": { "ozg-file-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/forwarding-shared", "root": "libs/ozg-file-shared",
"sourceRoot": "libs/forwarding-shared/src", "sourceRoot": "libs/ozg-file-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/forwarding-shared/src/**/*.ts", "libs/ozg-file-shared/src/**/*.ts",
"libs/forwarding-shared/src/**/*.html" "libs/ozg-file-shared/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/forwarding-shared"], "outputs": ["coverage/libs/ozg-file-shared"],
"options": { "options": {
"jestConfig": "libs/forwarding-shared/jest.config.js", "jestConfig": "libs/ozg-file-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
} }
} }
} }
}, },
"forwarding": { "tech-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/forwarding", "root": "libs/tech-shared",
"sourceRoot": "libs/forwarding/src", "sourceRoot": "libs/tech-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/forwarding/src/**/*.ts", "libs/tech-shared/src/**/*.ts",
"libs/forwarding/src/**/*.html" "libs/tech-shared/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/forwarding"],
"options": { "options": {
"jestConfig": "libs/forwarding/jest.config.js", "jestConfig": "libs/tech-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/tech-shared"]
} }
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
} }
} }
}, },
"vorgang-shared-ui": { "test-utils": {
"projectType": "library", "projectType": "library",
"root": "libs/vorgang-shared-ui", "root": "libs/test-utils",
"sourceRoot": "libs/vorgang-shared-ui/src", "sourceRoot": "libs/test-utils/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/vorgang-shared-ui/src/**/*.ts", "libs/test-utils/src/**/*.ts",
"libs/vorgang-shared-ui/src/**/*.html" "libs/test-utils/src/**/*.html"
] ]
} }
}, },
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/vorgang-shared-ui"],
"options": { "options": {
"jestConfig": "libs/vorgang-shared-ui/jest.config.js", "jestConfig": "libs/test-utils/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/test-utils"]
} }
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
} }
} }
}, },
"kommentar": { "ui": {
"projectType": "library", "projectType": "library",
"root": "libs/kommentar", "root": "libs/ui",
"sourceRoot": "libs/kommentar/src", "sourceRoot": "libs/ui/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/ui/src/**/*.ts", "libs/ui/src/**/*.html"]
}
},
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/kommentar"],
"options": { "options": {
"jestConfig": "libs/kommentar/jest.config.js", "jestConfig": "libs/ui/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
}
}, },
"lint": { "outputs": ["coverage/libs/ui"]
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/kommentar/src/**/*.ts",
"libs/kommentar/src/**/*.html"
]
} }
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
} }
} }
}, },
"kommentar-shared": { "user-profile": {
"projectType": "library", "projectType": "library",
"root": "libs/kommentar-shared", "root": "libs/user-profile",
"sourceRoot": "libs/kommentar-shared/src", "sourceRoot": "libs/user-profile/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/kommentar-shared"], "outputs": ["coverage/libs/user-profile"],
"options": { "options": {
"jestConfig": "libs/kommentar-shared/jest.config.js", "jestConfig": "libs/user-profile/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
} }
}, },
...@@ -726,8 +636,8 @@ ...@@ -726,8 +636,8 @@
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/kommentar-shared/src/**/*.ts", "libs/user-profile/src/**/*.ts",
"libs/kommentar-shared/src/**/*.html" "libs/user-profile/src/**/*.html"
] ]
} }
} }
...@@ -758,78 +668,168 @@ ...@@ -758,78 +668,168 @@
} }
} }
}, },
"user-profile": { "vorgang": {
"projectType": "library", "projectType": "library",
"root": "libs/user-profile", "root": "libs/vorgang",
"sourceRoot": "libs/user-profile/src", "sourceRoot": "libs/vorgang/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/vorgang/src/**/*.ts",
"libs/vorgang/src/**/*.html"
]
}
},
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/user-profile"],
"options": { "options": {
"jestConfig": "libs/user-profile/jest.config.js", "jestConfig": "libs/vorgang/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/vorgang"]
} }
}, },
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
}
},
"vorgang-detail": {
"projectType": "library",
"root": "libs/vorgang-detail",
"sourceRoot": "libs/vorgang-detail/src",
"prefix": "goofy-client",
"architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/user-profile/src/**/*.ts", "libs/vorgang-detail/src/**/*.ts",
"libs/user-profile/src/**/*.html" "libs/vorgang-detail/src/**/*.html"
] ]
} }
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/vorgang-detail/jest.config.js",
"passWithNoTests": true
},
"outputs": ["coverage/libs/vorgang-detail"]
}
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
} }
} }
}, },
"binary-file": { "vorgang-shared": {
"projectType": "library", "projectType": "library",
"root": "libs/binary-file", "root": "libs/vorgang-shared",
"sourceRoot": "libs/binary-file/src", "sourceRoot": "libs/vorgang-shared/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/vorgang-shared/src/**/*.ts",
"libs/vorgang-shared/src/**/*.html"
]
}
},
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/binary-file"],
"options": { "options": {
"jestConfig": "libs/binary-file/jest.config.js", "jestConfig": "libs/vorgang-shared/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
},
"outputs": ["coverage/libs/vorgang-shared"]
}
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
} }
}, },
"vorgang-shared-ui": {
"projectType": "library",
"root": "libs/vorgang-shared-ui",
"sourceRoot": "libs/vorgang-shared-ui/src",
"prefix": "goofy-client",
"architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/binary-file/src/**/*.ts", "libs/vorgang-shared-ui/src/**/*.ts",
"libs/binary-file/src/**/*.html" "libs/vorgang-shared-ui/src/**/*.html"
] ]
} }
},
"test": {
"builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/vorgang-shared-ui"],
"options": {
"jestConfig": "libs/vorgang-shared-ui/jest.config.js",
"passWithNoTests": true
}
} }
} }
}, },
"binary-file-shared": { "wiedervorlage": {
"projectType": "library", "projectType": "library",
"root": "libs/binary-file-shared", "root": "libs/wiedervorlage",
"sourceRoot": "libs/binary-file-shared/src", "sourceRoot": "libs/wiedervorlage/src",
"prefix": "goofy-client", "prefix": "goofy-client",
"architect": { "architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/wiedervorlage/src/**/*.ts",
"libs/wiedervorlage/src/**/*.html"
]
}
},
"test": { "test": {
"builder": "@nrwl/jest:jest", "builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/binary-file-shared"], "outputs": ["coverage/libs/wiedervorlage"],
"options": { "options": {
"jestConfig": "libs/binary-file-shared/jest.config.js", "jestConfig": "libs/wiedervorlage/jest.config.js",
"passWithNoTests": true "passWithNoTests": true
} }
}
}
}, },
"wiedervorlage-shared": {
"projectType": "library",
"root": "libs/wiedervorlage-shared",
"sourceRoot": "libs/wiedervorlage-shared/src",
"prefix": "goofy-client",
"architect": {
"lint": { "lint": {
"builder": "@nrwl/linter:eslint", "builder": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"libs/binary-file-shared/src/**/*.ts", "libs/wiedervorlage-shared/src/**/*.ts",
"libs/binary-file-shared/src/**/*.html" "libs/wiedervorlage-shared/src/**/*.html"
] ]
} }
},
"test": {
"builder": "@nrwl/jest:jest",
"outputs": ["coverage/libs/wiedervorlage-shared"],
"options": {
"jestConfig": "libs/wiedervorlage-shared/jest.config.js",
"passWithNoTests": true
}
} }
} }
} }
......
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
"plugin:@nrwl/nx/angular", "plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates" "plugin:@angular-eslint/template/process-inline-templates"
], ],
"parserOptions": {
"project": ["apps/goofy-e2e/tsconfig.*?.json"]
},
"rules": { "rules": {
"@angular-eslint/directive-selector": [ "@angular-eslint/directive-selector": [
"error", "error",
......
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
"plugin:@nrwl/nx/angular", "plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates" "plugin:@angular-eslint/template/process-inline-templates"
], ],
"parserOptions": {
"project": ["apps/goofy/tsconfig.*?.json"]
},
"rules": { "rules": {
"@angular-eslint/directive-selector": [ "@angular-eslint/directive-selector": [
"error", "error",
......
...@@ -6,18 +6,13 @@ module.exports = { ...@@ -6,18 +6,13 @@ module.exports = {
'ts-jest': { 'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json', tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$', stringifyContentPathRegex: '\\.(html|svg)$',
astTransformers: {
before: [
'jest-preset-angular/build/InlineFilesTransformer',
'jest-preset-angular/build/StripStylesTransformer',
],
},
}, },
}, },
coverageDirectory: '../../coverage/apps/goofy', coverageDirectory: '../../coverage/apps/goofy',
snapshotSerializers: [ snapshotSerializers: [
'jest-preset-angular/build/AngularNoNgAttributesSnapshotSerializer.js', 'jest-preset-angular/build/serializers/no-ng-attributes',
'jest-preset-angular/build/AngularSnapshotSerializer.js', 'jest-preset-angular/build/serializers/ng-snapshot',
'jest-preset-angular/build/HTMLCommentSerializer.js', 'jest-preset-angular/build/serializers/html-comment',
], ],
transform: { '^.+\\.(ts|js|html)$': 'jest-preset-angular' },
}; };
import 'jest-preset-angular'; import 'jest-preset-angular/setup-jest';
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
"plugin:@nrwl/nx/angular", "plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates" "plugin:@angular-eslint/template/process-inline-templates"
], ],
"parserOptions": {
"project": ["libs/api-root-shared/tsconfig.*?.json"]
},
"rules": { "rules": {
"@angular-eslint/directive-selector": [ "@angular-eslint/directive-selector": [
"error", "error",
......
...@@ -6,18 +6,13 @@ module.exports = { ...@@ -6,18 +6,13 @@ module.exports = {
'ts-jest': { 'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json', tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$', stringifyContentPathRegex: '\\.(html|svg)$',
astTransformers: {
before: [
'jest-preset-angular/build/InlineFilesTransformer',
'jest-preset-angular/build/StripStylesTransformer',
],
},
}, },
}, },
coverageDirectory: '../../coverage/libs/api-root-shared', coverageDirectory: '../../coverage/libs/api-root-shared',
snapshotSerializers: [ snapshotSerializers: [
'jest-preset-angular/build/AngularNoNgAttributesSnapshotSerializer.js', 'jest-preset-angular/build/serializers/no-ng-attributes',
'jest-preset-angular/build/AngularSnapshotSerializer.js', 'jest-preset-angular/build/serializers/ng-snapshot',
'jest-preset-angular/build/HTMLCommentSerializer.js', 'jest-preset-angular/build/serializers/html-comment',
], ],
transform: { '^.+\\.(ts|js|html)$': 'jest-preset-angular' },
}; };
import 'jest-preset-angular'; import 'jest-preset-angular/setup-jest';
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
"plugin:@nrwl/nx/angular", "plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates" "plugin:@angular-eslint/template/process-inline-templates"
], ],
"parserOptions": {
"project": ["libs/app-shared/tsconfig.*?.json"]
},
"rules": { "rules": {
"@angular-eslint/directive-selector": [ "@angular-eslint/directive-selector": [
"error", "error",
......
...@@ -6,18 +6,13 @@ module.exports = { ...@@ -6,18 +6,13 @@ module.exports = {
'ts-jest': { 'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json', tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$', stringifyContentPathRegex: '\\.(html|svg)$',
astTransformers: {
before: [
'jest-preset-angular/build/InlineFilesTransformer',
'jest-preset-angular/build/StripStylesTransformer',
],
},
}, },
}, },
coverageDirectory: '../../coverage/libs/app-shared', coverageDirectory: '../../coverage/libs/app-shared',
snapshotSerializers: [ snapshotSerializers: [
'jest-preset-angular/build/AngularNoNgAttributesSnapshotSerializer.js', 'jest-preset-angular/build/serializers/no-ng-attributes',
'jest-preset-angular/build/AngularSnapshotSerializer.js', 'jest-preset-angular/build/serializers/ng-snapshot',
'jest-preset-angular/build/HTMLCommentSerializer.js', 'jest-preset-angular/build/serializers/html-comment',
], ],
transform: { '^.+\\.(ts|js|html)$': 'jest-preset-angular' },
}; };
import 'jest-preset-angular'; import 'jest-preset-angular/setup-jest';
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
"plugin:@nrwl/nx/angular", "plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates" "plugin:@angular-eslint/template/process-inline-templates"
], ],
"parserOptions": {
"project": ["libs/binary-file-shared/tsconfig.*?.json"]
},
"rules": { "rules": {
"@angular-eslint/directive-selector": [ "@angular-eslint/directive-selector": [
"error", "error",
......
...@@ -6,18 +6,13 @@ module.exports = { ...@@ -6,18 +6,13 @@ module.exports = {
'ts-jest': { 'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json', tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$', stringifyContentPathRegex: '\\.(html|svg)$',
astTransformers: {
before: [
'jest-preset-angular/build/InlineFilesTransformer',
'jest-preset-angular/build/StripStylesTransformer',
],
},
}, },
}, },
coverageDirectory: '../../coverage/libs/binary-file-shared', coverageDirectory: '../../coverage/libs/binary-file-shared',
snapshotSerializers: [ snapshotSerializers: [
'jest-preset-angular/build/AngularNoNgAttributesSnapshotSerializer.js', 'jest-preset-angular/build/serializers/no-ng-attributes',
'jest-preset-angular/build/AngularSnapshotSerializer.js', 'jest-preset-angular/build/serializers/ng-snapshot',
'jest-preset-angular/build/HTMLCommentSerializer.js', 'jest-preset-angular/build/serializers/html-comment',
], ],
transform: { '^.+\\.(ts|js|html)$': 'jest-preset-angular' },
}; };
...@@ -3,10 +3,10 @@ import { configureTestSuite } from 'ng-bullet'; ...@@ -3,10 +3,10 @@ import { configureTestSuite } from 'ng-bullet';
import { BinaryFileSharedModule } from './binary-file-shared.module'; import { BinaryFileSharedModule } from './binary-file-shared.module';
describe('BinaryFileSharedModule', () => { describe('BinaryFileSharedModule', () => {
configureTestSuite(() => { beforeEach(async () => {
TestBed.configureTestingModule({ await TestBed.configureTestingModule({
imports: [BinaryFileSharedModule], imports: [BinaryFileSharedModule]
}) }).compileComponents();
}); });
it('should create', () => { it('should create', () => {
......
import 'jest-preset-angular'; import 'jest-preset-angular/setup-jest';
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
"plugin:@nrwl/nx/angular", "plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates" "plugin:@angular-eslint/template/process-inline-templates"
], ],
"parserOptions": {
"project": ["libs/binary-file/tsconfig.*?.json"]
},
"rules": { "rules": {
"@angular-eslint/directive-selector": [ "@angular-eslint/directive-selector": [
"error", "error",
......
...@@ -6,18 +6,13 @@ module.exports = { ...@@ -6,18 +6,13 @@ module.exports = {
'ts-jest': { 'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json', tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$', stringifyContentPathRegex: '\\.(html|svg)$',
astTransformers: {
before: [
'jest-preset-angular/build/InlineFilesTransformer',
'jest-preset-angular/build/StripStylesTransformer',
],
},
}, },
}, },
coverageDirectory: '../../coverage/libs/binary-file', coverageDirectory: '../../coverage/libs/binary-file',
snapshotSerializers: [ snapshotSerializers: [
'jest-preset-angular/build/AngularNoNgAttributesSnapshotSerializer.js', 'jest-preset-angular/build/serializers/no-ng-attributes',
'jest-preset-angular/build/AngularSnapshotSerializer.js', 'jest-preset-angular/build/serializers/ng-snapshot',
'jest-preset-angular/build/HTMLCommentSerializer.js', 'jest-preset-angular/build/serializers/html-comment',
], ],
transform: { '^.+\\.(ts|js|html)$': 'jest-preset-angular' },
}; };
import { TestBed } from '@angular/core/testing'; import { TestBed } from '@angular/core/testing';
import { configureTestSuite } from 'ng-bullet'; import { configureTestSuite } from 'ng-bullet';
import { BinaryFileModule } from './binary-file.module'; import { BinaryFileModule } from './binary-file.module';
import { AppSharedModule } from '@goofy-client/app-shared';
describe('BinaryFileModule', () => { describe('BinaryFileModule', () => {
configureTestSuite(() => { beforeEach(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
imports: [BinaryFileModule], imports: [BinaryFileModule],
}) }).compileComponents();
}); });
it('should create', () => { it('should create', () => {
......
import 'jest-preset-angular'; import 'jest-preset-angular/setup-jest';
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
"plugin:@nrwl/nx/angular", "plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates" "plugin:@angular-eslint/template/process-inline-templates"
], ],
"parserOptions": {
"project": ["libs/command-shared/tsconfig.*?.json"]
},
"rules": { "rules": {
"@angular-eslint/directive-selector": [ "@angular-eslint/directive-selector": [
"error", "error",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment