MaxKless
75cc561e9d
feat(graph): add project details view ( #20466 )
...
Co-authored-by: FrozenPandaz <jasonjean1993@gmail.com>
2023-12-04 09:53:19 -05:00
MaxKless
c727a22530
feat(graph): display expanded task inputs ( #19597 )
2023-10-16 16:01:34 -04:00
James Henry
6327fab2e0
chore(repo): dogfood nx release commands ( #19237 )
2023-09-21 13:38:13 -04:00
Jason Jean
bda90c4cc5
Revert "Revert "feat(repo): enable agents" ( #19112 )"
...
This reverts commit 3771c325bc50bb2acbca45966f2a2fd39d7f0af6.
2023-09-20 14:22:39 -04:00
Jonathan Cammisuli
537d7eb8be
feat(core): add WorkspaceContext class ( #18999 )
2023-09-13 09:56:36 -04:00
Simon Critchley
3771c325bc
Revert "feat(repo): enable agents" ( #19112 )
2023-09-11 15:58:09 -04:00
Victor Savkin
018d9972ee
feat(repo): add cloud workflows
2023-09-08 12:04:36 -04:00
Craigory Coppola
52408960cd
chore(repo): add .pnpm-store to gitignore ( #18626 )
2023-08-15 18:15:44 -04:00
Craigory Coppola
a33e75e4d8
feat(core): add --affected flag to nx graph ( #17340 )
2023-06-01 11:24:18 -04:00
Jason Jean
2d195007b0
feat(core): switch packages to use the @nx scope ( #16069 )
2023-04-14 19:56:37 -04:00
Craigory Coppola
6ba60a0d2f
feat(repo): add recently closed count to issues tracker ( #16018 )
2023-03-31 17:53:48 -04:00
Craigory Coppola
46b6a710c0
feat(core): support encapsulated nx install ( #14705 )
2023-02-14 23:46:06 +00: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
Philip Fulcher
2be9a01272
chore(graph): consume task graph data in client ( #13092 )
2022-11-09 16:58:28 -07:00
Philip Fulcher
86b4a51555
chore(graph): add graph generator ( #13003 )
2022-11-07 20:18:30 +00:00
Craigory Coppola
9b63ce167a
feat(core): don't generate workspace.json for v2 workspaces ( #12127 )
2022-09-27 23:16:22 +00:00
Philip Fulcher
6c3ef9d417
chore(graph): move dep-graph-client to graph-client ( #11792 )
2022-09-01 04:20:08 +00:00
Victor Savkin
918ddf6d4b
feat(core): hash tasks early when possible to enable optimizations ( #11533 )
2022-08-11 14:56:16 -04:00
Jason Jean
26ee770ac2
chore(repo): update nx to 14.5.3 ( #11459 )
2022-08-04 23:46:40 +00:00
Jason Jean
04985be149
chore(repo): switch publishing to use lerna ( #10293 )
2022-05-20 00:35:47 +00:00
Benjamin Cabanes
1d2b754f73
docs(nxdev): add open graph image generation ( #8906 )
2022-02-15 09:10:06 -05:00
Benjamin Cabanes
f62b7091d3
docs(nxdev): remove gitted docs ( #8819 )
2022-02-03 08:52:54 -05:00
Victor Savkin
330c33ddd1
fix(repo): add nx-cache to gitignore to make e2e tests pass on windows
2022-01-14 15:25:22 -05:00
Philip Fulcher
717a560a54
chore(dep-graph): migrate dep-graph app to React ( #8152 )
2021-12-16 23:30:04 +00:00
Philip Fulcher
5f9279a3ff
feat(dep-graph): use xstate for state management ( #7634 )
2021-11-08 21:00:45 -07:00
Emily Xiong
387af0cf3f
feat(core): add react native to main repo ( #6493 )
2021-08-25 15:54:23 -04:00
Victor Savkin
12102c258c
cleanup(repo): remove an unused field from package.json
2021-02-06 21:17:50 -05:00
Victor Savkin
e71ceba4ce
feat(repo): run e2e tests using nx
2020-06-07 23:31:38 -04:00
Jonathan Cammisuli
6e8d4615b8
chore(misc): add verdaccio files to .prettierignore and .gitignore ( #3024 )
2020-05-17 13:48:07 -04:00
tyankatsu
c732fd2f21
refactor(react): upgrade @testing-library/react ( #1905 )
...
* refactor(react): upgrade @testing-library/react
@testing-library/react v.9 doesn't require clean()
close #1855
* chore(react): remove cleanup
* refactor(react): change testingLibraryVersion 8.0.5 to 9.2.0
* refactor(react): update spec
2019-10-15 08:59:32 -04:00
Jason Jean
3bad40ea65
feat(nx): support no framework apps
2019-03-02 12:03:30 -05:00
Jason Jean
52f90b9702
feat(schematics): add vscode extension recommendations ( #1023 )
2019-01-31 14:19:41 -05:00
Jason Jean
469af6e1a0
feat(builders): introduce node build and execute builders
...
These builders handle building and executing node applications
2018-10-01 15:29:01 -04:00
Thomas Burleson
04e99b06ae
fix(schematics): ngrx schematics should generate enhanced ngrx files
...
@nrwl/schematics no longer uses the @ngrx/schematics to generate NgRx feature files.
* `ngrx/files/__directory__` templates are used
* Templates replicate the simple outputs generated from @ngrx/schematics:feature
* Templates add significant Nx enhancements.
The following standard files will be scaffolded:
* `<feature>.actions.ts`
* `<feature>.effects.ts` + `<feature>.effects.spec.ts`
* `<feature>.reducer.ts` + `<feature>.reducer.spec.ts`
The following new files will also be scaffolded:
* `<feature>.selectors.ts` + `<feature>.selectors.spec.ts`
Changes include:
* Change the action/enums to generate a trio of enums for each *feature*: `Load<Feature>`, `<Feature>Loaded`, and `<Feature>LoadError`
* Add code generators for `<feature>.selectors.ts`
* Add code generators for unit and integration testing `*.spec.ts` files
* Update the public barrel [`index.ts`] when adding ngrx to a library
* Use `StoreModule.forFeature()` when adding ngrx feature (without using the `--root` option)
* Use the Effect to respond tp `load<Feature>$` and dispatch `<Feature>Loaded` or `<Feature>LoadError`
* Update the Action to export `<feature>Actions` map of all action classes
* fix `ng-add.test.ts` tests for latest Angular CLI scaffolding
* fix `application.spec.ts` expect fails
Fixes #472 , Fixes #618 , Fixes #317 , Fixes #561 , Refs #380 .
2018-07-21 21:13:48 -04:00
FrozenPandaz
476688b885
chore: gitignore and remove log files
2018-03-25 10:55:44 -04:00
mrmeku
6a21906fdd
Combine link and link-spec scripts
2018-03-20 08:38:03 -04:00
mrmeku
4184bb2d13
Rebasing issues resolved
2018-03-20 08:38:03 -04:00
vsavkin
e7481a790f
refactor(schematics): use schematic context to format the generated code
2018-02-25 18:48:23 -05:00
vsavkin
cdb115ddb8
implement ngrx generation
2017-09-01 11:00:30 -04:00
vsavkin
7ac762c77f
init commit
2017-09-01 11:00:30 -04:00