Skip to content

Commit

Permalink
fix: revert exports in package.json (#948)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnpnl committed Jun 6, 2021
1 parent 9bba0fd commit 928e08b
Show file tree
Hide file tree
Showing 20 changed files with 3,431 additions and 3,409 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/nodejs.yml
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
@@ -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
@@ -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
@@ -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
@@ -0,0 +1,4 @@
/** @type {import('@jest/types').Config.InitialOptions} */
module.exports = {
projects: ['<rootDir>/projects/app1', '<rootDir>/projects/app2'],
};

0 comments on commit 928e08b

Please sign in to comment.