Skip to content

Commit 3679089

Browse files
committed
chore(*): update deps
1 parent 779e543 commit 3679089

File tree

9 files changed

+6729
-3433
lines changed

9 files changed

+6729
-3433
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

jest.preset.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
const nxPreset = require('@nrwl/jest/preset').default;
22

3-
module.exports = { ...nxPreset };
3+
module.exports = {
4+
...nxPreset,
5+
/* TODO: Update to latest Jest snapshotFormat
6+
* By default Nx has kept the older style of Jest Snapshot formats
7+
* to prevent breaking of any existing tests with snapshots.
8+
* It's recommend you update to the latest format.
9+
* You can do this by removing snapshotFormat property
10+
* and running tests with --update-snapshot flag.
11+
* Example: "nx affected --targets=test --update-snapshot"
12+
* More info: https://jestjs.io/docs/upgrading-to-jest29#snapshot-format
13+
*/
14+
snapshotFormat: { escapeString: true, printBasicPrototype: true },
15+
};

migrations.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"migrations": [
3+
{
4+
"version": "15.7.0-beta.0",
5+
"description": "Split global configuration files into individual project.json files. This migration has been added automatically to the beginning of your migration set to retroactively make them work with the new version of Nx.",
6+
"cli": "nx",
7+
"implementation": "./src/migrations/update-15-7-0/split-configuration-into-project-json-files",
8+
"package": "@nrwl/workspace",
9+
"name": "15-7-0-split-configuration-into-project-json-files"
10+
},
11+
{
12+
"cli": "nx",
13+
"version": "15.0.12-beta.1",
14+
"description": "Set project names in project.json files",
15+
"implementation": "./src/migrations/update-15-1-0/set-project-names",
16+
"package": "nx",
17+
"name": "15.1.0-set-project-names"
18+
},
19+
{
20+
"version": "15.7.0-beta.0",
21+
"description": "Split global configuration files (e.g., workspace.json) into individual project.json files.",
22+
"cli": "nx",
23+
"implementation": "./src/migrations/update-15-7-0/split-configuration-into-project-json-files",
24+
"package": "@nrwl/workspace",
25+
"name": "15-7-0-split-configuration-into-project-json-files"
26+
},
27+
{
28+
"cli": "nx",
29+
"version": "15.7.1-beta.0",
30+
"description": "Add node_modules to root eslint ignore",
31+
"factory": "./src/migrations/update-15-7-1/add-eslint-ignore",
32+
"package": "@nrwl/linter",
33+
"name": "add-eslint-ignore"
34+
},
35+
{
36+
"cli": "nx",
37+
"version": "15.8.0-beta.0",
38+
"description": "Rename .lib.swcrc to .swcrc for better SWC support throughout the workspace",
39+
"factory": "./src/migrations/update-15-8-0/rename-swcrc-config",
40+
"package": "@nrwl/js",
41+
"name": "rename-swcrc-config"
42+
},
43+
{
44+
"version": "15.8.0-beta.0",
45+
"cli": "nx",
46+
"description": "Update jest configs to support jest 29 changes (https://jestjs.io/docs/upgrading-to-jest29)",
47+
"factory": "./src/migrations/update-15-8-0/update-configs-jest-29",
48+
"package": "@nrwl/jest",
49+
"name": "update-configs-jest-29"
50+
},
51+
{
52+
"version": "15.8.0-beta.0",
53+
"cli": "nx",
54+
"description": "Update jest test files to support jest 29 changes (https://jestjs.io/docs/upgrading-to-jest29)",
55+
"factory": "./src/migrations/update-15-8-0/update-tests-jest-29",
56+
"package": "@nrwl/jest",
57+
"name": "update-tests-jest-29"
58+
}
59+
]
60+
}

nx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@
2727
"lint": {
2828
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
2929
}
30-
}
30+
},
31+
"defaultProject": "serverless-openapi"
3132
}

0 commit comments

Comments
 (0)