Skip to content

Commit 0db3a5c

Browse files
authored
fix(jest-utils): use official secondary package format (#300)
Closes #299
1 parent f30e0d2 commit 0db3a5c

19 files changed

+3
-210
lines changed

angular.json

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"projects": {
44
"example-app": "apps/example-app",
55
"example-app-karma": "apps/example-app-karma",
6-
"jest-utils": "projects/jest-utils",
76
"testing-library": "projects/testing-library"
87
}
98
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
88
"start": "nx serve",
99
"prebuild": "rimraf dist",
10-
"build": "nx run-many --target=build --projects=testing-library,jest-utils",
10+
"build": "nx run-many --target=build --projects=testing-library",
1111
"build:schematics": "tsc -p ./projects/testing-library/tsconfig.schematics.json",
1212
"test": "nx run-many --target=test --all",
1313
"lint": "nx workspace-lint && nx lint",

projects/jest-utils/.eslintrc.json

-47
This file was deleted.

projects/jest-utils/jest.config.js

-9
This file was deleted.

projects/jest-utils/ng-package.json

-8
This file was deleted.

projects/jest-utils/package.json

-33
This file was deleted.

projects/jest-utils/project.json

-54
This file was deleted.

projects/jest-utils/test-setup.ts

-2
This file was deleted.

projects/jest-utils/tsconfig.json

-24
This file was deleted.

projects/jest-utils/tsconfig.lib.json

-12
This file was deleted.

projects/jest-utils/tsconfig.lib.prod.json

-9
This file was deleted.

projects/jest-utils/tsconfig.spec.json

-9
This file was deleted.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

tsconfig.base.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"noUnusedParameters": true,
2424
"paths": {
2525
"@testing-library/angular": ["projects/testing-library"],
26-
"@testing-library/angular/jest-utils": ["projects/jest-utils"]
26+
"@testing-library/angular/jest-utils": ["projects/testing-library/jest-utils"]
2727
}
2828
},
2929
"exclude": ["node_modules", "tmp"]

0 commit comments

Comments
 (0)