nx/packages/next/migrations.json
Adam L Barrett 889b648886
Emotion upgrade for React and Next plugins (#4088)
* chore(react): update emotion to new versions and new package names on react plugin

* chore(nextjs): update emotion to latest version and the new package names

* feat(misc): have react and next plugin migrations update emotion imports

 * add renamePackageImports and renameNpmPackage rules to workspace utils
 * update migrations to update emotion imports to the new name and version
2020-11-27 13:32:42 -06:00

80 lines
2.1 KiB
JSON

{
"schematics": {
"update-8.10.0": {
"version": "8.10.0-beta.1",
"description": "Update Next.js libraries",
"factory": "./src/migrations/update-8-10-0/update-8-10-0"
},
"create-next-config-9.2.0": {
"version": "9.2.0-beta.1",
"description": "Add next.config.js file to Next apps",
"factory": "./src/migrations/update-9-2-0/create-next-config"
},
"update-9.3.1": {
"version": "9.3.1-beta.1",
"description": "Rename @nrwl/next:dev-server to @nrwl/next:server",
"factory": "./src/migrations/update-9-3-1/update-9-3-1"
},
"rename-emotion-packages-11.0.0": {
"version": "11.0.0-beta.0",
"description": "Rename emotion packages to match new 11.0.0 package names",
"factory": "./src/migrations/update-11-0-0/rename-emotion-packages-11-0-0"
},
"update-11.0.0": {
"version": "11.0.0-beta.0",
"description": "Update libraries",
"factory": "./src/migrations/update-11-0-0/update-11-0-0"
}
},
"packageJsonUpdates": {
"8.10.0": {
"version": "8.10.0",
"packages": {
"next": {
"version": "9.1.5",
"alwaysAddToPackageJson": false
}
}
},
"9.2.0": {
"version": "9.2.0",
"packages": {
"next": {
"version": "9.3.3",
"alwaysAddToPackageJson": false
}
}
},
"10.1.0": {
"version": "10.1.0-beta.0",
"packages": {
"next": {
"version": "9.5.2",
"alwaysAddToPackageJson": false
},
"node-sass": {
"version": "4.14.1",
"alwaysAddToPackageJson": false
}
}
},
"11.0.0": {
"version": "11.0.0-beta.0",
"packages": {
"next": {
"version": "10.0.1",
"alwaysAddToPackageJson": false
},
"@emotion/server": {
"version": "11.0.0",
"alwaysAddToPackageJson": false
},
"@emotion/styled": {
"version": "11.0.0",
"alwaysAddToPackageJson": false
}
}
}
}
}