Skip to content

Commit

Permalink
feat(react): update emotion and tailwind versions (nrwl#11409)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo authored Aug 3, 2022
1 parent 77b5278 commit 5d167ee
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 7 deletions.
9 changes: 9 additions & 0 deletions packages/next/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,15 @@
"alwaysAddToPackageJson": false
}
}
},
"14.5.3": {
"version": "14.5.3-beta.0",
"packages": {
"@emotion/server": {
"version": "11.10.0",
"alwaysAddToPackageJson": false
}
}
}
}
}
2 changes: 1 addition & 1 deletion packages/next/src/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export const eslintConfigNextVersion = '12.2.3';
export const sassVersion = '1.54.0';
export const lessLoader = '11.0.0';
export const stylusLoader = '7.0.0';
export const emotionServerVersion = '11.4.0';
export const emotionServerVersion = '11.10.0';
export const babelPluginStyledComponentsVersion = '1.10.7';
export const tsLibVersion = '^2.3.0';
29 changes: 29 additions & 0 deletions packages/react/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,35 @@
"alwaysAddToPackageJson": false
}
}
},
"14.5.3": {
"version": "14.5.3-beta.0",
"packages": {
"@types/node": {
"version": "18.6.3",
"alwaysAddToPackageJson": false
},
"@emotion/styled": {
"version": "11.10.0",
"alwaysAddToPackageJson": false
},
"@emotion/react": {
"version": "11.10.0",
"alwaysAddToPackageJson": false
},
"@emotion/babel-plugin": {
"version": "11.10.0",
"alwaysAddToPackageJson": false
},
"tailwindcss": {
"version": "3.1.7",
"alwaysAddToPackageJson": false
},
"autoprefixer": {
"version": "10.4.8",
"alwaysAddToPackageJson": false
}
}
}
}
}
12 changes: 6 additions & 6 deletions packages/react/src/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ export const typesReactVersion = '18.0.15';
export const typesReactDomVersion = '18.0.6';
export const typesReactIsVersion = '17.0.3';

export const typesNodeVersion = '18.0.4';
export const typesNodeVersion = '18.6.3';

export const styledComponentsVersion = '5.3.5';
export const typesStyledComponentsVersion = '5.1.25';

export const emotionStyledVersion = '11.9.3';
export const emotionReactVersion = '11.9.3';
export const emotionBabelPlugin = '11.9.2';
export const emotionStyledVersion = '11.10.0';
export const emotionReactVersion = '11.10.0';
export const emotionBabelPlugin = '11.10.0';

// WARNING: This needs to be in sync with Next.js' dependency or else there might be issues.
export const styledJsxVersion = '5.0.2';
Expand All @@ -38,5 +38,5 @@ export const babelPluginStyledComponentsVersion = '1.10.7';
export const tsLibVersion = '^2.3.0';

export const postcssVersion = '8.4.14';
export const tailwindcssVersion = '3.1.6';
export const autoprefixerVersion = '10.4.7';
export const tailwindcssVersion = '3.1.7';
export const autoprefixerVersion = '10.4.8';

0 comments on commit 5d167ee

Please sign in to comment.