From dd9c4af63c01b39563878b1272581487cdfc5b37 Mon Sep 17 00:00:00 2001 From: Nick Tsitlakidis Date: Tue, 4 Jun 2024 21:54:35 +0300 Subject: [PATCH] chore: Converting nx projects to inferred --- apps/example/project.json | 8 ++------ libs/core/project.json | 8 ++------ libs/mongodb/project.json | 8 ++------ 3 files changed, 6 insertions(+), 18 deletions(-) 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"] + } }