Jack Hsu
95421c6945
feat(nextjs): update Next.js to 13.4.1 and default to App Router for new apps ( #16948 )
2023-05-12 16:09:20 -04:00
Jack Hsu
dc911051aa
fix(nextjs): withNx works with production build ( #16867 )
2023-05-08 12:53:56 -04:00
Jack Hsu
8d35edac39
fix(nextjs): add workspace dependencies to transpilePackages automatically ( #16774 )
2023-05-04 18:08:34 -04:00
Nicholas Cunningham
d24862d358
fix(nextjs): Add debug ability when verbose is passed to build ( #16545 )
2023-04-26 11:21:13 -04:00
Jack Hsu
564ffaeebd
fix(nextjs): remove the need to install @nx/next for production builds ( #16469 )
2023-04-21 16:13:16 -04:00
Jason Jean
76dfc62412
feat(web): replace usages of @nrwl with @nx ( #16376 )
2023-04-19 10:59:41 -04:00
Jason Jean
2d195007b0
feat(core): switch packages to use the @nx scope ( #16069 )
2023-04-14 19:56:37 -04:00
Jack Hsu
c3c77d525e
feat(nextjs): remove "--server=..." app generator option ( #16312 )
2023-04-14 13:56:43 -04:00
Jack Hsu
73227515ed
feat(nextjs): add composePlugins util when using multiple plugins ( #16296 )
2023-04-13 15:41:17 -06:00
Jack Hsu
0578116fbf
feat(nextjs): update to Next.js 13.3.0 ( #16130 )
2023-04-12 10:47:44 -04:00
Jack Hsu
e904e04611
fix(nextjs): add missing style deps for less and stylus ( #15839 )
2023-03-22 22:05:18 +00:00
Jack Hsu
c7e49c564a
fix(nextjs): produce correct next.config.js file for production server ( #15824 )
2023-03-22 14:03:09 -04:00
Jack Hsu
63cdddfa11
fix(nextjs): handle buildable libs correctly ( #15795 )
2023-03-21 11:21:02 -04:00
Nicholas Cunningham
be81405a84
fix(nextjs): refactor how webpack config is loaded with nextjs ( #15650 )
...
Co-authored-by: FrozenPandaz <jasonjean1993@gmail.com>
2023-03-15 18:07:19 -04:00
Colum Ferry
361ddb1b0f
feat(js): move buildable libs to js ( #15558 )
2023-03-09 16:36:50 -05:00
Emily Xiong
a97212b601
feat(core): move tsconfig.base.json to @nrwl/js:init ( #14467 )
2023-02-16 11:17:30 -05:00
Jonathan Cammisuli
fecf7fb82f
feat(core): add native node bindings for hashing ( #14476 )
...
Co-authored-by: FrozenPandaz <jasonjean1993@gmail.com>
2023-02-01 14:43:40 -05:00
Jack Hsu
d3ba6447d0
fix(nextjs): hide lockfile generation behind a flag so it can be toggled on and off ( #14204 )
2023-01-06 20:26:10 +00:00
Jack Hsu
88f11a47ab
feat(nextjs): update to Next.js 13.1 ( #14186 )
2023-01-06 09:41:11 -05:00
Jack Hsu
9bdc2cabf8
feat(nextjs): update to Next.js 13 ( #12848 )
2022-10-27 09:22:23 -04:00
Jack Hsu
50f6cbb11d
feat(nextjs): remove dependency on "@nrwl/next" for the production build ( #12247 )
2022-09-26 12:38:44 -04:00
Jack Hsu
c5392aa951
feat(nextjs): update packages ( #12190 )
2022-09-22 16:15:56 +00:00
Jack Hsu
f49769a34a
feat(webpack): add webpack plugin ( #11966 )
2022-09-12 21:19:50 +01:00
Jack Hsu
9b26bc1585
fix(nextjs): SVGR plugin should not be used if nx: { svgr: false } is set in next.config.js ( #11829 )
2022-09-01 15:55:24 +00:00
Jack Hsu
646b8c2cf5
feat(nextjs): upgrade to nextjs 12.2.5 ( #11665 )
2022-08-22 11:21:26 -04:00
Jack Hsu
5d167ee8a4
feat(react): update emotion and tailwind versions ( #11409 )
2022-08-03 08:35:51 -04:00
Jack Hsu
e45c2f24ba
feat(nextjs): improve support for custom server ( #11325 )
...
- Add new generator for custom server
- Add @nrwl/js:node executor for serving custom server
- Deprecate @nrwl/node:node in favor of the above
2022-08-02 18:37:23 +00:00
Jack Hsu
c76eb7fb74
chore(nextjs): clean up constants import path and remove support for Next.js 10 ( #11287 )
2022-07-25 17:51:22 +00:00
Jack Hsu
2bcf1c28aa
Next version update ( #11280 )
...
* feat(react): update eslint a11y plugin version
* feat(next): update next.js versions
2022-07-25 14:08:27 +00:00
Jack Hsu
8075cb9a9f
chore(nextjs): remove outdir from Next.js config since it is no longer needed ( #11257 )
2022-07-22 11:06:22 -04:00
Leosvel Pérez Espinosa
01f7376169
cleanup(misc): consolidate tslib version in generated projects ( #11185 )
2022-07-19 12:59:37 -04:00
Jack Hsu
d657f912d9
feat(web): upgrade webpack plugin versions ( #11191 )
2022-07-18 15:23:30 -04:00
Jack Hsu
b042b80e2d
feat(next): update next.js versions ( #11115 )
2022-07-13 18:30:12 +00:00
Victor Savkin
c52a8c2e9b
feat(core): finalize the input api
2022-06-29 10:52:14 -04:00
Chau Tran
1afad766e6
fix(core): return a list of dependents that do not have sourceRoot to calculate glob patterns ( #10899 )
...
When a library (often an implicit dependency one) does not have `sourceRoot`,
`getSourceDirOfDependentProjects` returns an array with the problematic library path as `[undefined,
libs/some-other-lib]` which causes `createGlobPatternsForDependencies` to throw an error and
ultimately returns an empty `[]` instead of `[libs/some-other-lib]`.
This PR ensures
`getSourceDirOfDependentProjects` filters out `undefined` (`sourceRoot`) as well as logs a warning
to let the users know that they have libraries that are missing `sourceRoot` and Nx cannot calculate
their glob patterns
ISSUES CLOSED : #10871
2022-06-27 13:53:40 -05:00
Jack Hsu
f95b1c3c7d
feat(next): update package versions ( #10658 )
2022-06-09 14:26:34 +00:00
Jason Jean
04985be149
chore(repo): switch publishing to use lerna ( #10293 )
2022-05-20 00:35:47 +00:00
Jack Hsu
e07ef9f216
fix(nextjs): fix support for custom distDir ( #10106 )
2022-05-02 20:50:44 +00:00
Jack Hsu
2b421117bf
feat(react): add default development configuration for React and Next.js apps ( #9892 )
2022-04-20 04:27:19 +00:00
Jack Hsu
b02beb551b
feat(react): update to react 18 ( #9613 )
2022-03-30 17:48:37 +00:00
Miroslav Jonaš
3b21f4dfea
fix(core): switch from appRootPath to workspaceRoot ( #9600 )
2022-03-30 09:15:20 -04:00
Victor Savkin
d4b5c30eba
cleanup(core): remove the indirection left after inlining ta… ( #9469 )
2022-03-23 22:18:17 -04:00
Victor Savkin
6f038e7a4a
feat(core): reorganize packges to consolidate all cli-related code in nx
2022-03-14 16:42:51 -04:00
Louis DeScioli
5cebe9ccdd
fix(nextjs): use posix path format for generated config.distdir ( #8990 )
...
ISSUES CLOSED : #8989
2022-03-10 14:51:15 +00:00
Miroslav Jonaš
06ff832ea9
chore(react): fix version on eslint-plugin-react ( #9121 )
2022-02-25 17:25:06 +01:00
HIKARU KOBORI
f8c614d45b
feat(nextjs): bump up Next.js v12.1.0 ( #9020 )
...
* feat(nextjs): feat(nextjs): bump up nextjs v12.1.0
bump up next.js and eslint-config-next to v12.1.0
ISSUES CLOSED : #9018
Co-authored-by: kobori.hikaru <kobori.hikaru@a-hikkoshi.co.jp>
Co-authored-by: kirjai <9858620+kirjai@users.noreply.github.com>
2022-02-18 21:01:03 +00:00
Phillip Barta
be91d1f99a
fix(core): stop inlining tsconfig-paths-webpack-plugin and use version with fix ( #8357 )
2022-01-27 08:59:46 -05:00
Noriyuki Shinpuku
fe96a33173
feat(nextjs): bump Next.js version to 12.0.7 ( #7788 )
2021-12-08 20:06:02 +00:00
Jack Hsu
39bc2e293e
feat(nextjs): bump Next.js version to 12.0.0 ( #7524 )
2021-10-27 00:37:14 +00:00
Kirils L
67ff4acea2
fix(nextjs): sourcemaps display transpiled code ( #7487 )
2021-10-25 10:01:07 -04:00