diff --git a/apps/example/project.json b/apps/example/project.json index 2aaafe9..0a88c6d 100644 --- a/apps/example/project.json +++ b/apps/example/project.json @@ -3,6 +3,7 @@ "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "apps/example/src", "projectType": "application", + "tags": [], "targets": { "build": { "executor": "@nx/webpack:webpack", @@ -38,10 +39,6 @@ } } }, - "lint": { - "executor": "@nx/eslint:lint", - "outputs": ["{options.outputFile}"] - }, "test": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], @@ -49,6 +46,5 @@ "jestConfig": "apps/example/jest.config.ts" } } - }, - "tags": [] + } } diff --git a/libs/core/project.json b/libs/core/project.json index ca15e84..39ddf9a 100644 --- a/libs/core/project.json +++ b/libs/core/project.json @@ -3,6 +3,7 @@ "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "libs/core/src", "projectType": "library", + "tags": ["publishable"], "targets": { "build": { "executor": "@nx/js:tsc", @@ -20,10 +21,6 @@ "command": "node tools/scripts/publish.mjs core {args.ver} {args.tag}", "dependsOn": ["build"] }, - "lint": { - "executor": "@nx/eslint:lint", - "outputs": ["{options.outputFile}"] - }, "test": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], @@ -34,6 +31,5 @@ "codeCoverage": true } } - }, - "tags": ["publishable"] + } } diff --git a/libs/mongodb/project.json b/libs/mongodb/project.json index 976b2bb..d039d61 100644 --- a/libs/mongodb/project.json +++ b/libs/mongodb/project.json @@ -3,6 +3,7 @@ "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "libs/mongodb/src", "projectType": "library", + "tags": ["publishable"], "targets": { "build": { "executor": "@nx/js:tsc", @@ -20,10 +21,6 @@ "command": "node tools/scripts/publish.mjs mongodb {args.ver} {args.tag}", "dependsOn": ["build"] }, - "lint": { - "executor": "@nx/eslint:lint", - "outputs": ["{options.outputFile}"] - }, "test": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], @@ -34,6 +31,5 @@ "codeCoverage": true } } - }, - "tags": ["publishable"] + } }