Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
refactor: Cleanup old dependencies.
Browse files Browse the repository at this point in the history
Cleanup legacy dependencies that are only bloating our install time on the ci.
And remove gulp scripts that are not used anymore.
  • Loading branch information
Lukas Holzer authored and lukasholzer committed Feb 17, 2020
1 parent d8a8455 commit ad5bc8f
Show file tree
Hide file tree
Showing 26 changed files with 510 additions and 3,391 deletions.
2 changes: 0 additions & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,6 @@
/tools/barista/* @thomaspink
/tools/barista/src/** @lara-aigmueller @thomaspink

/tools/gulp/** @thomaspink

/tools/linting/* @thomaspink @lukasholzer
/tools/linting/src/** @rowa-audil @lara-aigmueller @heartdisease

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,10 @@ import { c } from '@dynatrace/angular-components/c';
import { a as a2 } from '@dynatrace/angular-components/a';`,
);

console.log(appTree.readContent('projects/lib-testing/src/main.spec.ts'));
if (runFixers) {
await runFixers();
}
console.log(appTree.readContent('projects/lib-testing/src/main.spec.ts'));

expect(
appTree.readContent('projects/lib-testing/src/main.spec.ts'),
).toMatchSnapshot();
Expand Down
4 changes: 2 additions & 2 deletions components/schematics/src/testing/test-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
SchematicTestRunner,
UnitTestTree,
} from '@angular-devkit/schematics/testing';
import { readFileSync, removeSync } from 'fs-extra';
import { readFileSync, rmdirSync } from 'fs';

/** Create a base app used for testing. */
export async function createTestApp(
Expand Down Expand Up @@ -86,7 +86,7 @@ export async function createFileSystemTestApp(
tempPath,
writeFile,
removeTempDir: () => {
removeSync(tempPath);
rmdirSync(tempPath, { recursive: true });
},
};

Expand Down
Loading

0 comments on commit ad5bc8f

Please sign in to comment.