Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: revert exports in package.json #948

Merged
merged 1 commit into from
Jun 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ jobs:
yarn1-
- name: install
run: yarn --immutable
- name: build
run: yarn build
- name: run eslint
run: yarn lint
- name: run prettier
Expand Down Expand Up @@ -104,8 +102,6 @@ jobs:
yarn1-
- name: install
run: yarn --immutable
- name: build
run: yarn build
- name: run tests
run: yarn test
- name: run example apps tests
Expand Down
840 changes: 421 additions & 419 deletions examples/example-app-v10/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/example-app-v10/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-app-v10",
"version": "0.0.0",
"version": "10.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@angular/compiler-cli": "~10.2.5",
"@angular/language-service": "~10.2.5",
"@types/jest": "^26.0.23",
"jest": "^27.0.0",
"jest": "^27.0.4",
"ts-node": "^9.1.1",
"typescript": "~4.0.7"
}
Expand Down
1,522 changes: 751 additions & 771 deletions examples/example-app-v11/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions examples/example-app-v11/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-app-v11",
"version": "0.0.0",
"version": "11.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand All @@ -23,12 +23,12 @@
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.9",
"@angular/cli": "~11.2.9",
"@angular-devkit/build-angular": "~0.1102.14",
"@angular/cli": "~11.2.14",
"@angular/compiler-cli": "~11.2.10",
"@types/jest": "^26.0.23",
"@types/node": "^12.11.1",
"jest": "^27.0.0",
"jest": "^27.0.4",
"ts-node": "~8.3.0",
"typescript": "~4.1.5"
}
Expand Down
4 changes: 4 additions & 0 deletions examples/example-app-v12-monorepo/jest-esm.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('@jest/types').Config.InitialOptions} */
module.exports = {
projects: ['<rootDir>/projects/app1/jest-esm.config.js', '<rootDir>/projects/app2/jest-esm.config.js'],
};
4 changes: 4 additions & 0 deletions examples/example-app-v12-monorepo/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('@jest/types').Config.InitialOptions} */
module.exports = {
projects: ['<rootDir>/projects/app1', '<rootDir>/projects/app2'],
};