feat(utils): add utils library with a fake ramdon generator

This commit is contained in:
thomas
2022-12-15 17:04:07 +01:00
parent 0979a9f3db
commit c60791a530
13 changed files with 192 additions and 10 deletions

View File

@@ -0,0 +1,28 @@
{
"name": "shared-utils",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "libs/shared/utils/src",
"prefix": "angular-challenges",
"targets": {
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/shared/utils/jest.config.ts",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/shared/utils/**/*.ts",
"libs/shared/utils/**/*.html"
]
}
}
},
"tags": []
}