Skip to content

Commit

Permalink
feat(nextjs): update to Next.js 13 (#12848)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo committed Oct 27, 2022
1 parent f9d1cdd commit 9bdc2ca
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions packages/next/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,27 @@
"alwaysAddToPackageJson": false
}
}
},
"15.0.4": {
"version": "15.0.4-beta.0",
"packages": {
"next": {
"version": "13.0.0",
"alwaysAddToPackageJson": false
},
"eslint-config-next": {
"version": "13.0.0",
"alwaysAddToPackageJson": false
},
"less-loader": {
"version": "11.1.0",
"alwaysAddToPackageJson": false
},
"stylus-loader": {
"version": "7.1.0",
"alwaysAddToPackageJson": false
}
}
}
}
}
8 changes: 4 additions & 4 deletions packages/next/src/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export const nxVersion = require('../../package.json').version;

export const nextVersion = '12.3.1';
export const eslintConfigNextVersion = '12.3.1';
export const nextVersion = '13.0.0';
export const eslintConfigNextVersion = '13.0.0';
export const sassVersion = '1.55.0';
export const lessLoader = '11.0.0';
export const stylusLoader = '7.0.0';
export const lessLoader = '11.1.0';
export const stylusLoader = '7.1.0';
export const emotionServerVersion = '11.10.0';
export const babelPluginStyledComponentsVersion = '1.10.7';
export const tsLibVersion = '^2.3.0';

0 comments on commit 9bdc2ca

Please sign in to comment.