🚀 release: v3.0.0

This commit is contained in:
Amruth Pillai
2022-03-02 17:44:11 +01:00
parent 2175256310
commit 295172687b
352 changed files with 30932 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"root": "libs/schema",
"sourceRoot": "libs/schema/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/schema",
"main": "libs/schema/src/index.ts",
"tsConfig": "libs/schema/tsconfig.lib.json",
"assets": ["libs/schema/*.md"]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/schema/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/schema"],
"options": {
"jestConfig": "libs/schema/jest.config.js",
"passWithNoTests": true
}
}
},
"tags": []
}