feat(linter): cache --outputFile (#6852)

This commit is contained in:
Jason Jean 2021-08-26 11:25:51 -04:00 committed by GitHub
parent 387af0cf3f
commit a7f89508e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 190 additions and 27 deletions

View File

@ -815,7 +815,7 @@ describe('cache', () => {
expect(outputWithBothLintTasksCached).toContain( expect(outputWithBothLintTasksCached).toContain(
'read the output from cache' 'read the output from cache'
); );
expectMatchedOutput(outputWithBothLintTasksCached, [ expectCached(outputWithBothLintTasksCached, [
myapp1, myapp1,
myapp2, myapp2,
`${myapp1}-e2e`, `${myapp1}-e2e`,

View File

@ -300,6 +300,9 @@ Object {
"apps/my-dir/my-app-e2e/**/*.{js,ts}", "apps/my-dir/my-app-e2e/**/*.{js,ts}",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
}, },
}, },
"projectType": "application", "projectType": "application",
@ -459,6 +462,9 @@ Object {
"apps/my-app-e2e/**/*.{js,ts}", "apps/my-app-e2e/**/*.{js,ts}",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
}, },
}, },
"projectType": "application", "projectType": "application",

View File

@ -360,6 +360,9 @@ describe('app', () => {
"apps/my-app-e2e/**/*.{js,ts}", "apps/my-app-e2e/**/*.{js,ts}",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });
@ -392,6 +395,9 @@ describe('app', () => {
"apps/my-app-e2e/**/*.ts", "apps/my-app-e2e/**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });
@ -566,6 +572,7 @@ describe('app', () => {
}, },
lint: { lint: {
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['apps/my-app-e2e/**/*.ts'], lintFilePatterns: ['apps/my-app-e2e/**/*.ts'],
}, },

View File

@ -29,6 +29,9 @@ Object {
"apps/e2e-app-1/**/*.{js,ts}", "apps/e2e-app-1/**/*.{js,ts}",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
}, },
}, },
} }

View File

@ -169,6 +169,7 @@ describe('schematic:cypress-project', () => {
expect(project.architect.lint).toEqual({ expect(project.architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['apps/my-app-e2e/**/*.{js,ts}'], lintFilePatterns: ['apps/my-app-e2e/**/*.{js,ts}'],
}, },

View File

@ -46,6 +46,12 @@
"version": "12.4.0-beta.0", "version": "12.4.0-beta.0",
"description": "Remove ESLint parserOptions.project config if no rules requiring type-checking are in use", "description": "Remove ESLint parserOptions.project config if no rules requiring type-checking are in use",
"factory": "./src/migrations/update-12-4-0/remove-eslint-project-config-if-no-type-checking-rules" "factory": "./src/migrations/update-12-4-0/remove-eslint-project-config-if-no-type-checking-rules"
},
"add-outputs": {
"cli": "nx",
"version": "12.9.0-beta.0",
"description": "Add outputs for caching",
"factory": "./src/migrations/update-12-9-0/add-outputs"
} }
}, },
"packageJsonUpdates": { "packageJsonUpdates": {

View File

@ -57,6 +57,9 @@ describe('@nrwl/linter:lint-project', () => {
"**/*.ts", "**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });

View File

@ -93,6 +93,7 @@ export async function lintProjectGenerator(
if (options.linter === Linter.EsLint) { if (options.linter === Linter.EsLint) {
projectConfig.targets['lint'] = { projectConfig.targets['lint'] = {
executor: '@nrwl/linter:eslint', executor: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: options.eslintFilePatterns, lintFilePatterns: options.eslintFilePatterns,
}, },

View File

@ -0,0 +1,69 @@
import {
addProjectConfiguration,
readProjectConfiguration,
TargetConfiguration,
Tree,
} from '@nrwl/devkit';
import { createTreeWithEmptyWorkspace } from '@nrwl/devkit/testing';
import addOutputs from './add-outputs';
describe('addOutputs', () => {
let tree: Tree;
beforeEach(() => {
tree = createTreeWithEmptyWorkspace();
const lintWithoutOutputs: TargetConfiguration = {
executor: '@nrwl/linter:eslint',
options: {},
};
const lintWithOutputs: TargetConfiguration = {
executor: '@nrwl/linter:eslint',
outputs: ['dist'],
options: {},
};
const notLint: TargetConfiguration = {
executor: '@nrwl/node:build',
options: {},
};
addProjectConfiguration(tree, 'proj', {
root: 'proj',
targets: {
lintWithoutOutputs,
lintWithOutputs,
notLint,
},
});
});
it('should add outputs to targets that do not have outputs', async () => {
await addOutputs(tree);
expect(readProjectConfiguration(tree, 'proj')).toMatchInlineSnapshot(`
Object {
"root": "proj",
"targets": Object {
"lintWithOutputs": Object {
"executor": "@nrwl/linter:eslint",
"options": Object {},
"outputs": Array [
"dist",
],
},
"lintWithoutOutputs": Object {
"executor": "@nrwl/linter:eslint",
"options": Object {},
"outputs": Array [
"{options.outputFile}",
],
},
"notLint": Object {
"executor": "@nrwl/node:build",
"options": Object {},
},
},
}
`);
});
});

View File

@ -0,0 +1,26 @@
import {
formatFiles,
getProjects,
Tree,
updateProjectConfiguration,
} from '@nrwl/devkit';
export default async function addOutputs(tree: Tree) {
for (const [projectName, project] of getProjects(tree)) {
if (!project.targets) {
continue;
}
for (const target of Object.values(project.targets)) {
if (target.executor !== '@nrwl/linter:eslint' || target.outputs) {
continue;
}
target.outputs = ['{options.outputFile}'];
updateProjectConfiguration(tree, projectName, project);
}
}
await formatFiles(tree);
}

View File

@ -28,6 +28,9 @@ Object {
"apps/nest-app-1/**/*.ts", "apps/nest-app-1/**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
}, },
}, },
} }
@ -314,6 +317,9 @@ Object {
"libs/nest-lib-1/**/*.ts", "libs/nest-lib-1/**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
}, },
}, },
} }

View File

@ -59,6 +59,9 @@ Object {
"libs/my-lib/**/*.ts", "libs/my-lib/**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`; `;

View File

@ -27,6 +27,7 @@ describe('lib', () => {
).toBeUndefined(); ).toBeUndefined();
expect(workspaceJson.projects[libFileName].architect.lint).toEqual({ expect(workspaceJson.projects[libFileName].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: [`libs/${libFileName}/**/*.ts`], lintFilePatterns: [`libs/${libFileName}/**/*.ts`],
}, },
@ -212,6 +213,7 @@ describe('lib', () => {
expect(project.root).toEqual(`libs/${dirFileName}/${libFileName}`); expect(project.root).toEqual(`libs/${dirFileName}/${libFileName}`);
expect(project.targets.lint).toEqual({ expect(project.targets.lint).toEqual({
executor: '@nrwl/linter:eslint', executor: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: [`libs/${dirFileName}/${libFileName}/**/*.ts`], lintFilePatterns: [`libs/${dirFileName}/${libFileName}/**/*.ts`],
}, },

View File

@ -75,6 +75,7 @@ describe('app', () => {
); );
expect(workspaceJson.projects['my-node-app'].architect.lint).toEqual({ expect(workspaceJson.projects['my-node-app'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['apps/my-node-app/**/*.ts'], lintFilePatterns: ['apps/my-node-app/**/*.ts'],
}, },
@ -182,6 +183,7 @@ describe('app', () => {
workspaceJson.projects['my-dir-my-node-app'].architect.lint workspaceJson.projects['my-dir-my-node-app'].architect.lint
).toEqual({ ).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['apps/my-dir/my-node-app/**/*.ts'], lintFilePatterns: ['apps/my-dir/my-node-app/**/*.ts'],
}, },
@ -272,6 +274,9 @@ describe('app', () => {
"apps/my-node-app/**/*.ts", "apps/my-node-app/**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });

View File

@ -19,6 +19,7 @@ describe('lib', () => {
expect(workspaceJson.projects['my-lib'].architect.build).toBeUndefined(); expect(workspaceJson.projects['my-lib'].architect.build).toBeUndefined();
expect(workspaceJson.projects['my-lib'].architect.lint).toEqual({ expect(workspaceJson.projects['my-lib'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/my-lib/**/*.ts'], lintFilePatterns: ['libs/my-lib/**/*.ts'],
}, },
@ -201,6 +202,7 @@ describe('lib', () => {
); );
expect(workspaceJson.projects['my-dir-my-lib'].architect.lint).toEqual({ expect(workspaceJson.projects['my-dir-my-lib'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/my-dir/my-lib/**/*.ts'], lintFilePatterns: ['libs/my-dir/my-lib/**/*.ts'],
}, },
@ -304,6 +306,9 @@ describe('lib', () => {
"libs/my-lib/**/*.ts", "libs/my-lib/**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });

View File

@ -48,6 +48,7 @@ describe('NxPlugin Plugin Generator', () => {
}); });
expect(project.targets.lint).toEqual({ expect(project.targets.lint).toEqual({
executor: '@nrwl/linter:eslint', executor: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/my-plugin/**/*.ts'], lintFilePatterns: ['libs/my-plugin/**/*.ts'],
}, },

View File

@ -29,6 +29,7 @@ describe('lib', () => {
expect(workspaceJson.projects['my-lib'].architect.build).toBeUndefined(); expect(workspaceJson.projects['my-lib'].architect.build).toBeUndefined();
expect(workspaceJson.projects['my-lib'].architect.lint).toEqual({ expect(workspaceJson.projects['my-lib'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/my-lib/**/*.{ts,tsx,js,jsx}'], lintFilePatterns: ['libs/my-lib/**/*.{ts,tsx,js,jsx}'],
}, },
@ -141,6 +142,7 @@ describe('lib', () => {
); );
expect(workspaceJson.projects['my-dir-my-lib'].architect.lint).toEqual({ expect(workspaceJson.projects['my-dir-my-lib'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/my-dir/my-lib/**/*.{ts,tsx,js,jsx}'], lintFilePatterns: ['libs/my-dir/my-lib/**/*.{ts,tsx,js,jsx}'],
}, },
@ -196,6 +198,9 @@ describe('lib', () => {
"libs/my-lib/**/*.{ts,tsx,js,jsx}", "libs/my-lib/**/*.{ts,tsx,js,jsx}",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });

View File

@ -306,6 +306,7 @@ Object {
const workspaceJson = getProjects(appTree); const workspaceJson = getProjects(appTree);
expect(workspaceJson.get('my-app').targets.lint).toEqual({ expect(workspaceJson.get('my-app').targets.lint).toEqual({
executor: '@nrwl/linter:eslint', executor: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['apps/my-app/**/*.{ts,tsx,js,jsx}'], lintFilePatterns: ['apps/my-app/**/*.{ts,tsx,js,jsx}'],
}, },
@ -326,15 +327,18 @@ Object {
const workspaceJson = getProjects(appTree); const workspaceJson = getProjects(appTree);
expect(workspaceJson.get('my-app').targets.test).toBeUndefined(); expect(workspaceJson.get('my-app').targets.test).toBeUndefined();
expect(workspaceJson.get('my-app').targets.lint).toMatchInlineSnapshot(` expect(workspaceJson.get('my-app').targets.lint).toMatchInlineSnapshot(`
Object { Object {
"executor": "@nrwl/linter:eslint", "executor": "@nrwl/linter:eslint",
"options": Object { "options": Object {
"lintFilePatterns": Array [ "lintFilePatterns": Array [
"apps/my-app/**/*.{ts,tsx,js,jsx}", "apps/my-app/**/*.{ts,tsx,js,jsx}",
], ],
}, },
} "outputs": Array [
`); "{options.outputFile}",
],
}
`);
}); });
}); });

View File

@ -32,6 +32,7 @@ describe('lib', () => {
expect(workspaceJson.projects['my-lib'].architect.build).toBeUndefined(); expect(workspaceJson.projects['my-lib'].architect.build).toBeUndefined();
expect(workspaceJson.projects['my-lib'].architect.lint).toEqual({ expect(workspaceJson.projects['my-lib'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/my-lib/**/*.{ts,tsx,js,jsx}'], lintFilePatterns: ['libs/my-lib/**/*.{ts,tsx,js,jsx}'],
}, },
@ -224,6 +225,7 @@ describe('lib', () => {
); );
expect(workspaceJson.projects['my-dir-my-lib'].architect.lint).toEqual({ expect(workspaceJson.projects['my-dir-my-lib'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/my-dir/my-lib/**/*.{ts,tsx,js,jsx}'], lintFilePatterns: ['libs/my-dir/my-lib/**/*.{ts,tsx,js,jsx}'],
}, },
@ -334,6 +336,9 @@ describe('lib', () => {
"libs/my-lib/**/*.{ts,tsx,js,jsx}", "libs/my-lib/**/*.{ts,tsx,js,jsx}",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });

View File

@ -158,6 +158,7 @@ describe('@nrwl/storybook:configuration', () => {
expect(project.targets.lint).toEqual({ expect(project.targets.lint).toEqual({
executor: '@nrwl/linter:eslint', executor: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['libs/test-ui-lib/**/*.ts'], lintFilePatterns: ['libs/test-ui-lib/**/*.ts'],
}, },

View File

@ -74,7 +74,7 @@ describe('app', () => {
expect(tree.exists('apps/my-app-e2e/cypress.json')).toBeTruthy(); expect(tree.exists('apps/my-app-e2e/cypress.json')).toBeTruthy();
const tsconfigE2E = readJson(tree, 'apps/my-app-e2e/tsconfig.json'); const tsconfigE2E = readJson(tree, 'apps/my-app-e2e/tsconfig.json');
expect(tsconfigE2E).toMatchInlineSnapshot(` expect(tsconfigE2E).toMatchInlineSnapshot(`
Object { Object {
"compilerOptions": Object { "compilerOptions": Object {
"allowJs": true, "allowJs": true,
"outDir": "../../dist/out-tsc", "outDir": "../../dist/out-tsc",
@ -89,8 +89,8 @@ Object {
"src/**/*.ts", "src/**/*.ts",
"src/**/*.js", "src/**/*.js",
], ],
} }
`); `);
const eslintJson = readJson(tree, '/apps/my-app/.eslintrc.json'); const eslintJson = readJson(tree, '/apps/my-app/.eslintrc.json');
expect(eslintJson).toMatchInlineSnapshot(` expect(eslintJson).toMatchInlineSnapshot(`
@ -314,6 +314,7 @@ Object {
expect(workspaceJson.projects['my-app'].architect.lint).toEqual({ expect(workspaceJson.projects['my-app'].architect.lint).toEqual({
builder: '@nrwl/linter:eslint', builder: '@nrwl/linter:eslint',
outputs: ['{options.outputFile}'],
options: { options: {
lintFilePatterns: ['apps/my-app/**/*.ts'], lintFilePatterns: ['apps/my-app/**/*.ts'],
}, },
@ -358,6 +359,9 @@ Object {
"apps/my-app/**/*.ts", "apps/my-app/**/*.ts",
], ],
}, },
"outputs": Array [
"{options.outputFile}",
],
} }
`); `);
}); });