42 Commits

Author SHA1 Message Date
Benjamin Cabanes
1e30f3d148
chore(nx-dev): update tagline across projects (#31318)
Aligned all instances of the tagline. Changes include documentation, metadata, UI content, test assertions, and other project assets.
2025-05-23 16:20:35 -04:00
Jack Hsu
3688ef58b9
chore(misc): fix npm version badge in generated readme files (#30996)
This PR fixes the badge on package readmes, e.g.
https://www.npmjs.com/package/nx.

It currently shows the latest for `@nrwl/workspace`, which is `19.8.4`,
but we should show the latest nx (`20.8.1`).
2025-05-02 08:36:30 -04:00
Philip Fulcher
46497356ce
chore: migrate links to blog (#26892)
<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

<!-- If this is a particularly complex change or feature addition, you
can request a dedicated Nx release for this pull request branch. Mention
someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they
will confirm if the PR warrants its own release for testing purposes,
and generate it for you if appropriate. -->

## Current Behavior
<!-- This is the behavior we have today -->
Blog links point to Medium and dev.to blogs
## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->
Blog links point to internal blog
## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #
2024-07-15 15:28:06 -04:00
Benjamin Cabanes
5a305d41de
feat(nx-dev): add homepage updates (#20592)
Co-authored-by: Juri <juri.strumpflohner@gmail.com>
2023-12-08 14:40:42 -05:00
Zachary DeRose
fa9f7bc620
fix(misc): fixing discord link in npm page (#19372) 2023-10-02 10:30:21 -04:00
Zachary DeRose
e6eafaca46
docs(misc): community slack to official discord (#18873) 2023-09-07 11:01:39 -04:00
Isaac Mann
afa5eb59fa
docs(core): document the @nrwl => @nx rescope (#16403)
Co-authored-by: FrozenPandaz <jasonjean1993@gmail.com>
2023-04-27 18:14:59 -04:00
Juri Strumpflohner
df26a29316
docs(nx-dev): fix Youtube link (#14605) 2023-01-25 10:48:04 -05:00
Victor Savkin
ef215e99e1 feat(misc): update package readmes 2023-01-23 16:39:22 -05:00
Victor Savkin
8d9de7f81d cleanup(core): clean up workspace creation 2022-11-15 17:22:02 -05:00
Wataru
9ca75db153
fix(misc): fix broken tutorial link on npm page (#12766) 2022-10-24 16:37:30 -04:00
Juri
ab89351f62 docs(core): adjust broken add to monorepo links 2022-10-13 20:43:04 +02:00
Benjamin Cabanes
da0cc4792f
docs(nxdev): update internal reference links (#12083) 2022-09-19 19:15:19 +00:00
Benjamin Cabanes
ac4f4c8177
docs(nxdev): add noreferrer for _blank links (#9807) 2022-04-12 15:26:02 +00:00
Victor Savkin
e5c3f2ce31
chore(repo): minor readme fixes 2022-01-24 09:46:42 -05:00
Jack Hsu
f231cfc01b
feat(repo): move gatsby plugin to nx-labs repo (#8617) 2022-01-20 12:00:51 -05:00
Victor Savkin
9e75918154
feat(core): speed up file map creation (#8597) 2022-01-19 15:30:21 -05:00
Victor Savkin
7b9294a360
chore(repo): update readme 2022-01-18 12:24:54 -05:00
Victor Savkin
88751a3685 chore(repo): clean up the language to match the new tag line 2021-12-17 16:08:38 -05:00
Brandon
7020fe307e
chore(misc): update Nx livestream branding (#7673) 2021-11-09 14:08:40 -06:00
Leosvel Pérez Espinosa
ff202d323c
cleanup(misc): rename oss preset to npm and update presets related docs (#6777) 2021-08-19 11:10:29 -07:00
Nrwl CI Machine
b8aff5e7c3 fix(misc): minor fixes in readme files 2021-08-09 10:58:26 -04:00
vsavkin
22c7643370 feat(repo): refine the readme 2021-07-12 13:57:31 -04:00
vsavkin
6df137fc16 cleanup(repo): readme refinements 2021-07-09 10:45:23 -04:00
vsavkin
9bbfbddabf fix(repo): adjust the language in the readme 2021-07-08 20:46:47 -04:00
vsavkin
ebffb44c04 chore(repo): readme tweaks 2021-05-26 13:42:25 -04:00
vsavkin
ce6f7f209e chore(repo): readme tweaks 2021-05-25 21:01:26 -04:00
vsavkin
31ec2b0f77 chore(repo): update readme 2021-05-19 20:56:39 -04:00
vsavkin
f82344d63a chore(repo): refine the tag line 2021-05-18 20:55:40 -04:00
vsavkin
af23cc5d7d feat(misc): change the nx tag line 2021-05-18 16:07:22 -04:00
vsavkin
4a0dcbab40 chore(repo): update resources fragment 2021-05-18 15:32:53 -04:00
vsavkin
afc6fafe24 chore(repo): clean up readme 2021-05-18 14:24:47 -04:00
Vivek
4a5345363b
docs(misc): update READMEs to have alt on <img> tags (#5306) 2021-04-22 13:36:00 +00:00
vsavkin
6024859990 chore(repo): clean up language 2021-03-29 12:26:01 -04:00
Vivek More 🧐
212fb00548 cleanup(misc): use more es6 features
- Single char alternation (e.g. a|b|c|d) in a RegExp can be simplified to use a character class ([abcd]) instead.
  This usually also provides slightly better matching performance.
- Character escapes that are replaceable with the unescaped character without a change in meaning. Inside the square brackets of a character class, many escapes are unnecessary that would be necessary outside of a character class. For example the regex [\.] is identical to [.]
- If several qualified expressions occur after the qualifier having been checked for nullable, they can be replaced with optional chaining
2021-03-24 20:11:32 -04:00
Caitlin Cashin
27542a2cd2 chore(repo): update resources
I removed the list of individual talks, presentations, and podcasts (maintaining the doc with every new talk is a lot of work, and the list was getting very long). We'll maintain a YouTube playlist with all that info. The playlist and Office Hours playlist are now linked in the "Additional Resources" section (formerly known as "Misc").

Also fixed a few typographical/formatting issues
2020-12-15 16:15:15 -05:00
Juri
0679d3c90c docs(repo): adjust malformed markdown on course section of readme 2020-11-27 15:20:10 -05:00
Juri
0970d835f5 docs(docs): add link to Nx Egghead course 2020-11-27 14:40:10 -05:00
Juri Strumpflohner
da77047a4f
docs(misc): add ngconf webinar recording to talks (#4064) 2020-11-11 16:19:12 +01:00
Victor Savkin
7cbf4ffd88 feat(core): add oss preset to create-nx-workspace 2020-06-19 13:01:57 -04:00
Victor Savkin
1e593a2b07 fix(misc): minor format changes in readmes 2020-06-15 10:27:07 -04:00
Victor Savkin
0111d87575 feat(repo): have separate readmes for all plugins 2020-06-14 23:33:05 -04:00