Skip to content

Commit 7f5261f

Browse files
committed
update(nx): first step of migration to v12.8.0
1 parent 4059cf0 commit 7f5261f

File tree

2 files changed

+42
-13
lines changed

2 files changed

+42
-13
lines changed

migrations.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"migrations": [
3+
{
4+
"cli": "nx",
5+
"version": "12.8.0-beta.0",
6+
"description": "Remove Typescript Preprocessor Plugin",
7+
"factory": "./src/migrations/update-12-8-0/remove-typescript-plugin",
8+
"package": "@nrwl/cypress",
9+
"name": "remove-typescript-plugin"
10+
},
11+
{
12+
"cli": "nx",
13+
"version": "12.8.0-beta.11",
14+
"description": "Adjust the Next.js lib babel configuration for styled-jsx",
15+
"factory": "./src/migrations/update-12-8-0/remove-styled-jsx-babel-plugin",
16+
"package": "@nrwl/next",
17+
"name": "fix-nextjs-lib-babel-config-12.8.0"
18+
},
19+
{
20+
"version": "12.8.0-beta.11",
21+
"cli": "nx",
22+
"description": "Adjust Storybook tsconfig to add styled-jsx typings",
23+
"factory": "./src/migrations/update-12-8-0/update-storybook-styled-jsx-typings",
24+
"package": "@nrwl/storybook",
25+
"name": "update-12-8.0"
26+
}
27+
]
28+
}

package.json

+14-13
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"private": true,
4646
"dependencies": {
4747
"document-register-element": "1.13.1",
48-
"next": "11.0.1",
48+
"next": "11.1.0",
4949
"react": "^17.0.2",
5050
"react-dom": "^17.0.2"
5151
},
@@ -55,16 +55,16 @@
5555
"@babel/preset-env": "7.9.6",
5656
"@babel/preset-react": "7.9.4",
5757
"@babel/preset-typescript": "7.9.0",
58-
"@nrwl/cli": "12.6.3",
59-
"@nrwl/cypress": "12.6.3",
60-
"@nrwl/eslint-plugin-nx": "12.6.3",
61-
"@nrwl/jest": "12.6.3",
62-
"@nrwl/next": "12.6.3",
63-
"@nrwl/react": "12.6.3",
64-
"@nrwl/storybook": "12.6.3",
65-
"@nrwl/tao": "12.6.3",
66-
"@nrwl/web": "12.6.3",
67-
"@nrwl/workspace": "12.6.3",
58+
"@nrwl/cli": "12.8.0",
59+
"@nrwl/cypress": "12.8.0",
60+
"@nrwl/eslint-plugin-nx": "12.8.0",
61+
"@nrwl/jest": "12.8.0",
62+
"@nrwl/next": "12.8.0",
63+
"@nrwl/react": "12.8.0",
64+
"@nrwl/storybook": "12.8.0",
65+
"@nrwl/tao": "12.8.0",
66+
"@nrwl/web": "12.8.0",
67+
"@nrwl/workspace": "12.8.0",
6868
"@storybook/addon-a11y": "^6.3.1",
6969
"@storybook/addon-actions": "^6.3.1",
7070
"@storybook/addon-essentials": "^6.3.1",
@@ -82,9 +82,9 @@
8282
"babel-jest": "26.2.2",
8383
"babel-loader": "8.1.0",
8484
"cypress": "^5.5.0",
85-
"dotenv": "8.2.0",
85+
"dotenv": "10.0.0",
8686
"eslint": "7.22.0",
87-
"eslint-config-next": "11.0.1",
87+
"eslint-config-next": "11.1.0",
8888
"eslint-config-prettier": "8.1.0",
8989
"eslint-plugin-cypress": "^2.10.3",
9090
"eslint-plugin-import": "2.22.1",
@@ -112,3 +112,4 @@
112112
"url-loader": "^3.0.0"
113113
}
114114
}
115+

0 commit comments

Comments
 (0)