Adam Gardner
2cde4fb839
docs(nxdev): documentation for tailwind.config.js ( #9970 )
...
Fixing the join statement by adding *
2022-04-25 12:23:20 -04:00
Victor Savkin
5bc53e09f2
docs(misc): minor improvements in the module federation guide
2022-04-25 11:04:56 -04:00
Caleb Ukle
88971468db
fix(testing): pass --js flag to jest generators ( #9965 )
2022-04-22 22:43:59 -04:00
Giora Guttsait
90f9591279
docs: add closing string template backtick in code block ( #9963 )
2022-04-22 22:46:48 +00:00
Caleb Ukle
fca85ca482
fix(testing): add missing --js support for jest generators ( #9959 )
...
* fix(testing): add ts-node as devDep
* fix(testing): add missing --js option for jest generators
2022-04-22 14:49:40 -04:00
Jonathan Cammisuli
c1c5f0b57d
feat(misc): add application x-type for host and remote generators ( #9954 )
2022-04-22 14:42:25 +00:00
Jack Hsu
d5468f74d2
docs(core): update module federation guide ( #9952 )
2022-04-22 09:43:50 -04:00
Jack Hsu
21d5dd13f3
docs(core): module federation docs ( #9932 )
2022-04-21 18:04:36 -04:00
Miroslav Jonaš
d27563ba1e
fix(core): improve generated workflows ( #9921 )
2022-04-21 12:55:02 +02:00
Victor Savkin
4990d050ae
cleanup(core): update the docs to be inline with nx 14 ( #9851 )
2022-04-20 20:58:47 -04:00
Miroslav Jonaš
ec0f4b4173
fix(core): handle failed CI workflows in CNW CLI ( #9915 )
2022-04-20 20:46:13 -04:00
Colum Ferry
991efef5e5
feat(angular): serve static for remotes ( #9911 )
2022-04-20 21:49:26 +00:00
Miroslav Jonaš
5fe8d84396
feat(core): add CI generation to create-nx-workspace ( #9611 )
2022-04-20 14:51:15 -04:00
Jack Hsu
e32932d267
feat(react): add ability to serve remote apps in dev or static mode ( #9893 )
2022-04-20 12:27:49 -04:00
James Henry
2e907af1e3
feat(core): add --create-commits option to nx migrate ( #9845 )
2022-04-20 10:22:54 -04:00
Jack Hsu
5a9020a301
docs(react): update migration guide for react 18 ( #9897 )
2022-04-20 14:03:40 +00:00
Jack Hsu
586501aa35
chore(react): update MFE language to module federation ( #9888 )
2022-04-19 20:48:49 +00:00
Jack Hsu
a878b2c647
docs(react): update migration guide ( #9887 )
2022-04-19 13:21:38 -04:00
Jack Hsu
25c63b6795
feat(react): upgrade to React 18 ( #9847 )
...
BREAKING CHANGE: react-router API has changed, and @testing-library/react-hooks has been deprecated (See: https://nx.dev/guides/react-18 )
2022-04-19 11:50:27 -04:00
Leosvel Pérez Espinosa
cfaedc8181
feat(angular): support migrating angular cli workspaces with library projects ( #9885 )
2022-04-19 16:18:26 +01:00
Emily Xiong
a0045b3b8e
bugfix(detox): fix typo option for test to be reuse ( #9874 )
2022-04-19 10:42:52 -04:00
Miroslav Jonas
31b647343e
fix(core): make CNW preset property open for custom presets
2022-04-19 13:20:13 +02:00
Craigory Coppola
4f1c14cb75
chore(nxdev): reorganize nx plugin content ( #9758 )
2022-04-18 13:40:11 -04:00
Craigory Coppola
2177aae6eb
docs(nx-plugin): add documentation for project inference plugins ( #9757 )
2022-04-18 13:19:18 -04:00
Colum Ferry
4b846e8dc9
feat(angular): add module-federation-dev-server builder ( #9843 )
2022-04-14 15:39:15 -04:00
Colum Ferry
e1f64a3896
feat(angular): remove mfe-host alias in favour of host ( #9834 )
2022-04-14 12:42:02 +01:00
Miroslav Jonaš
6b49b5f3b2
docs(misc): update CI workflows documentation ( #9837 )
2022-04-14 11:08:34 +00:00
Colum Ferry
73d8967a2b
feat(angular): remove mfe-remote alias in favour of remote ( #9832 )
2022-04-14 11:11:46 +01:00
Jason Jean
bfbe8fcb21
fix(core): remove @nrwl/workspace when adding nx to monorepo ( #9813 )
2022-04-13 14:40:24 -04:00
James Henry
46e7b4d49c
chore(core): improve help output for generators and executors ( #9800 )
2022-04-12 14:05:55 -04:00
Benjamin Cabanes
77553ecc6e
docs(core): update mfe guide link ( #9808 )
2022-04-12 14:55:51 +00:00
Katerina Skroumpelou
ad0002586b
feat(storybook): removing support for Storybook 5 ( #9380 )
2022-04-12 16:58:20 +03:00
Colum Ferry
9396db03c3
docs(angular): hide mfe options from the app generator ( #9798 )
2022-04-12 11:39:24 +00:00
Craigory Coppola
e4e5c3b63b
chore(repo): relocate types from migrate.ts ( #9790 )
2022-04-11 13:33:54 -04:00
Caleb Ukle
b3d59bdcc5
docs(core): Add example of using global scripts for jest and nx libraries ( #9483 )
...
* docs(testing): add example on how to use ts path aliases within jest global setup/teardown
Jest global setup/teardown scripts run before path aliaes are mapped, so the path resigstration must
happen in the userland global scripts that are set to run
initially the thought of doing this within
the jest executor was thought, but this will provide an inconsistent way to running tests if the
tests are run via an editor plugin or calling `jest` directly; therefore, it's deferred to register
the paths within userland files that are needing the paths to be registered in order to allow for
proper handling (cleanup) and not to overcall unneeded features when global scripts are not in use
for those not using the feature.
ISSUES CLOSED : #8709
* cleanup(testing): test the usage of jest global scripts to ensure no regressions
streamline e2e jest project testing and update global tests to test global functions are working as
intended
2022-04-11 13:51:29 +00:00
Chau Tran
3e94d4cb3a
fix(js): add init generator placeholder ( #9777 )
2022-04-11 08:47:08 -05:00
Thomaz Capra
2fe18186c7
docs(nxdev): fix typo in micro frontend ( #9774 )
...
Co-authored-by: Thomaz Capra <x190823@bcpcorp.net>
2022-04-11 09:31:51 -04:00
Juri
9f1802c45d
docs(linter): add link to module boundaries blog post
2022-04-11 10:38:37 +02:00
Colum Ferry
5b105b1a0e
fix(angular): add application schema options to mfe-remote ( #9752 )
2022-04-08 15:32:00 +00:00
Colum Ferry
409f000cbe
fix(angular): add application schema options to mfe-host ( #9751 )
2022-04-08 14:47:50 +00:00
Leosvel Pérez Espinosa
96db3c51c4
docs(misc): render values correctly ( #9712 )
2022-04-08 09:45:51 -04:00
Miroslav Jonaš
7c7e415fff
docs(core): remove obsolete nx cloud default value from docs ( #9747 )
2022-04-08 12:40:31 +01:00
Leosvel Pérez Espinosa
a64bba9980
feat(linter): add cacheStrategy, rulesdir and resolvePluginsRelativeTo flags to eslint executor ( #9709 )
2022-04-07 15:49:44 +01:00
Colum Ferry
9562ad2bab
docs(angular): add dynamic federation guide for mfes ( #9604 )
2022-04-07 15:45:53 +01:00
Colum Ferry
751e80b63e
docs(angular): update mfe guide ( #9500 )
...
* Revert "Revert "docs(angular): update the mfe guide (#9478 )" (#9492 )"
This reverts commit 1903f018c952f7c46c362f2e63a16e11c46aa279.
* docs(angular): fix guide to use mfe.config.js
2022-04-07 15:45:33 +01:00
Zachary DeRose
b5ce8bbfaf
docs(angular): updating script changes per Nx updates ( #9715 )
...
* docs(angular): updating script changes per Nx updates
* docs(angular): update youtube link
2022-04-06 11:36:48 -07:00
Zachary DeRose
05de3906c1
docs(angular): migration from nx console section added ( #9691 )
...
* docs(angular): migration from nx console section added
* docs(angular): adjusting video dimensions
* docs(angular): moving from nx console section to bottom
2022-04-05 14:15:42 -07:00
Miroslav Jonaš
1755094bf7
docs(core): cleanup nx commands help after yargs update ( #9694 )
2022-04-05 23:05:06 +02:00
Victor Savkin
48769dc4bb
cleanup(core): remove NX_INVOKED_BY_RUNNER ( #9693 )
2022-04-05 16:58:13 -04:00
Benjamin Cabanes
3d101dbbf6
docs(core): add core-tutorial link on intro ( #9690 )
2022-04-05 18:13:16 +00:00