6054 Commits

Author SHA1 Message Date
Phillip Barta
0cc7042beb
chore(repo): updated dependency fs-extra to ^10.1.0 (#9985) 2022-05-06 17:56:19 -04:00
Miroslav Jonaš
e5fd269511
fix(core): list only changed files on format:write log (#10155) 2022-05-06 17:10:18 -04:00
Benjamin Cabanes
8cb07be771
docs(nxdev): add redirect for overview urls (#10190) 2022-05-06 16:06:15 -04:00
Benjamin Cabanes
3eb2955245
docs(nxdev): show overview on package list view (#10189) 2022-05-06 15:48:44 -04:00
Daniel Grant
63006b791a
fix(js): .swcrc path option should follow existing conventions (#10127)
Co-authored-by: Craigory Coppola <craigorycoppola@gmail.com>
2022-05-06 13:46:13 -04:00
Jack Hsu
c4e5b7c7c0
fix(react): host server exits when one of the remotes fail (#10185) 2022-05-06 12:41:40 -04:00
Denis Frenademetz
5dc5429632
fix(testing): 14.0.0 jest migration errors when additional configurations are specified 2022-05-06 08:34:04 -05:00
Stian Morsund
d6f49ea624
fix(angular): support skipPackageJson for library generation (#10179) 2022-05-06 09:08:52 +01:00
Leosvel Pérez Espinosa
5c94d6222f
fix(angular): add missing skipImport option to the component generator (#10167) 2022-05-06 08:57:20 +01:00
Jack Hsu
7da1913812
docs(nxdev): update module federation guide (#10176) 2022-05-05 21:07:31 -04:00
Victor Savkin
ac76a7e53a
Release 14.1.4 2022-05-05 17:23:54 -04:00
Victor Savkin
53460849a2 feat(core): introduce an explicit variable for deciding on how output is printed 2022-05-05 17:22:22 -04:00
Jason Jean
c428751129 Release 14.1.3 2022-05-05 17:01:29 -04:00
Miroslav Jonaš
c9e28a183e
chore(core): cleanup create-nx-workspace from obsolete code (#10174) 2022-05-05 15:31:19 -04:00
Miroslav Jonaš
43ac1f9c43
fix(core): fix broken cnw with pnpm v7 (#10175) 2022-05-05 19:31:11 +00:00
Jason Jean
728cd1dd58 Release 14.1.2 2022-05-05 13:57:11 -04:00
James Henry
03c378cb35
chore(nxdev): enable e2e testing for nx-dev (#10088)
* chore(nxdev): enable e2e testing for nx-dev

* chore(nxdev): remove vercel github workflow, run on circle

* chore(repo): try and fix cypress on circle

* chore(repo): try and fix cypress on circle

* chore(repo): update node dep cache key to include package.json
2022-05-05 12:54:32 -04:00
Colum Ferry
77cc38a624
fix(angular): use fork in file-server for http-server (#10161) 2022-05-05 16:08:04 +01:00
Leosvel Pérez Espinosa
67e233d8d7
fix(react): remove collected dependency from module federation shared config when not found in package.json (#10157) 2022-05-05 10:43:37 -04:00
Leosvel Pérez Espinosa
b8c175f5e0
feat(angular): add support for passing additional shared dependencies in the module federation config (#10156) 2022-05-05 15:08:55 +01:00
Leosvel Pérez Espinosa
0a1e82210d
fix(angular): expand extends property when reading nx.json in the angular cli adapter (#10165) 2022-05-05 15:05:16 +01:00
Juri Strumpflohner
a2b704df54
docs(nxdev): allow to use ts or js for typescript / javascript syntax highlighting (#10153) 2022-05-05 09:33:31 -04:00
Juri Strumpflohner
e8be46986d
docs(nxdev): adjust syntax highlighting lang for javascript & typescript (#10152) 2022-05-05 09:33:00 -04:00
Lucas Vieira
6d4f971722
fix(js): add missing projectType property to @nrwl/js:library generator (#10159) 2022-05-05 09:18:13 -04:00
Leosvel Pérez Espinosa
e212cb9fe1
fix(angular): fix collecting secondary entry points for module federation builds (#10129) 2022-05-05 09:14:56 +01:00
Jason Jean
8b810879d2
fix(core): add tao to package group (#10148) 2022-05-04 22:43:40 +00:00
Daniel Harvey
8e4a38e764
fix(core): skip dependencies already added (avoid circular dependencies) (#9744)
* fix(core): Skip dependencies already added (avoid circular)

The project utility method `collectDependentProjectNodesNames()`
produces a stack overflow (e.g. producing project dependencies for
`tailwind.config.js` when circular dependencies exist.

Fix by adding loop detection for "already add" dependencies.

* cleanup(core): Correct formating

* chore(core): add test for circular dependencies in getSourceDirOfDependentProjects

Co-authored-by: Jason Jean <jasonjean1993@gmail.com>
2022-05-04 22:16:17 +00:00
Jay Bell
4a91966cb4
feat(core): expose hash file function in hasher (#10146) 2022-05-04 17:52:35 -04:00
Craigory Coppola
27d7eebbcd
fix(core): update run-migrations log message (#10137) 2022-05-04 17:48:29 -04:00
Jason Jean
ac8ebed1c8
fix(core): add dependency from workspace to devkit (#10147) 2022-05-04 21:27:31 +00:00
Colum Ferry
1d3becac90
fix(angular): kill ports correctly (#10142) 2022-05-04 20:08:34 +01:00
Benjamin Cabanes
aa360645ab
docs(nxdev): display specific nx package name exception (#10139) 2022-05-04 17:26:41 +00:00
Daniele Tortora
664df0e849
feat(js): add --includeBabelRc flag for @nrwl/js:library generator (#8793, #8600) (#10055)
* fix(js): fix(js): adding missing babelrc for tsc compiled libraries

ISSUES CLOSED: #8600, #8793

ISSUES CLOSED: #8600, #8793

* feat(js): adds the --skipBabelConfig flag to prevent .babelrc file generation

ISSUES CLOSED: #8600, #8793
ISSUES CLOSED: #8600, #8793

* feat(js): adds the --includeBabelRc flag to the library generator

adds the --includeBabelRc flag to the library generator, and a mechanism to automatically detect the
nrwl/web plugin, which requires auto-generation of the babelrc even when not explicitly set by the
user

ISSUES CLOSED: #8600, #8793
2022-05-04 10:58:34 -05:00
Jason Jean
e4cccfc14d
chore(repo): update nx to 14.1.1 (#10132) 2022-05-04 15:27:43 +00:00
Jason Jean
bd53f1f261 Release 14.1.1 2022-05-04 10:43:49 -04:00
Jack Hsu
14b3419c19
fix(nextjs): update custom server setup so hostname and port are always provided (#10103) 2022-05-04 14:31:05 +00:00
Jason Jean
95412cfa17
fix(misc): fix incorrect nx imports (#10131) 2022-05-04 14:24:31 +00:00
Victor Savkin
142a7c7a40
Release 14.1.0 2022-05-04 09:20:40 -04:00
Ben Ezard
9fc0a18cae
feat(core): mark implementation packages as affected if their corresponding type declaration package is updated (#10083) 2022-05-03 18:21:14 -04:00
Craigory Coppola
7d9397f2f1
fix(nx-plugin): e2e project paths should be normalized (#10123) 2022-05-03 21:26:48 +00:00
Victor Savkin
821fc07723 chore(repo): format fixes 2022-05-03 14:35:18 -04:00
Victor Savkin
16c61b7001 chore(repo): update the warning on when to remove npx cache 2022-05-03 14:35:18 -04:00
Victor Savkin
470a240f71 feat(misc): add syntax sugar for dependsOn 2022-05-03 14:35:18 -04:00
Victor Savkin
942e89a19d feat(misc): add noop executor for cases when we need to define a target hat does nothing 2022-05-03 14:35:18 -04:00
Victor Savkin
e6738abc9f feat(misc): move run-commands executor to nx 2022-05-03 14:35:18 -04:00
Daniel Grant
a68120a35b
fix(js): .swcrc path should be customizable (#10118)
Co-authored-by: Craigory Coppola <craigorycoppola@gmail.com>
2022-05-03 13:41:52 -04:00
Leosvel Pérez Espinosa
0e21fa0368
fix(angular): normalize project name and don't default to npmScope as prefix when it's not a valid html selector (#10116) 2022-05-03 16:16:30 +01:00
Craigory Coppola
62d0535acd
fix(nx-plugin): create-nx-plugin should generate valid import path (#10107) 2022-05-03 10:42:23 -04:00
Leosvel Pérez Espinosa
cfe21b2eb8
fix(core): normalize paths in ng cli adapter when finding matching files (#10113) 2022-05-03 09:44:07 -04:00
Miroslav Jonaš
c1213b6d09
chore(repo): allow nx version override for E2E tests (#10114) 2022-05-03 15:33:07 +02:00