Jason Jean
b4b38d12d8
fix(nx): small fixes
2019-03-03 09:12:53 -05:00
Victor Savkin
9ef7606b3e
feat(nx): empty workspace should start with no dependencies
2019-03-03 09:12:53 -05:00
Victor Savkin
b81e767300
feat(nx): add presets for web components and react
2019-03-03 09:12:53 -05:00
Jason Jean
a6fd16d00e
fix(nx): lock version during update
2019-02-22 18:04:24 -05:00
Jason Jean
f6224ffca5
feat(schematics): update to angular cli 7.3.0
2019-02-19 15:25:39 -05:00
Victor Savkin
03992c7de1
feat(nx): switch defaults to jest, cypress, and nest
2019-02-13 10:35:32 -05:00
Victor Savkin
8948c8d291
feat(node): support .env files
2019-02-08 10:40:55 -05:00
Jason Jean
dbf59af6a5
feat(schematics): update ngrx to 7.2.0
2019-02-06 13:26:50 -05:00
Jason Jean
52f90b9702
feat(schematics): add vscode extension recommendations ( #1023 )
2019-01-31 14:19:41 -05:00
Jason Jean
4e1c8b3598
fix(schematics): fix incorrect migration target version
2019-01-28 17:37:42 -05:00
Jason Jean
16df9e2bba
feat(schematics): update to AngularCLI 7.2.1
2019-01-19 10:27:26 -05:00
Jason Jean
b850c1c81e
fix(schematics): fix ngrx dependencies migration to 7.2
2019-01-05 18:38:55 -05:00
Jason Jean
d537476b0c
enhancement(schematics): optimize formatting during codegen
2019-01-03 14:18:20 -05:00
Jason Jean
e020a14e38
fix(schematics): fix misgenerated cypress lint configs
2019-01-02 09:38:47 -05:00
Jason Jean
516aa27582
enhancement(schematics): ignore .gitignored files from affected
2018-12-18 15:45:40 -05:00
ben
df175f165b
chore(schematics): set ngrx version to 6.1.2
2018-12-13 15:09:42 -05:00
Jason Jean
5b305f758d
feat(schematics): update to angular cli 7.1
2018-12-12 19:31:44 -05:00
Jason Jean
0bca0a7273
enhancement(schematics): incrementally update dependencies with only files changed
2018-12-12 19:29:42 -05:00
Jason Jean
92383e53b6
fix(schematics): add es2015 module to tsconfig
2018-12-03 11:52:01 -05:00
Jason Jean
cd2e311a32
feat(schematics): create local project tsconfigs for typings
2018-11-25 14:25:43 -05:00
--get
e7e9fac7d9
feat(schematics): update prettier to 1.15 and format html
2018-11-18 14:47:11 -05:00
--get
f8ac8e1569
feat(schematics): add generic affected
2018-11-12 14:30:25 -05:00
--get
1d1315ab4f
fix(schematics): update ng packagr for ng7 migration
2018-11-07 14:25:34 -05:00
--get
cf158c940e
fix(schematics): fix ng test --watch
2018-11-07 14:19:36 -05:00
ben
f73c1b57a8
build(package): use latest jasmine marble version
...
This update the package to use the latest jasmin marbles version. Avoiding peer dependency warnings.
fix #793 #804
2018-10-25 12:18:15 -04:00
--get
67c4bdf4af
feat(schematics): upgrade to angular 7
2018-10-24 09:42:31 -04:00
--get
9714a97f3c
feat(schematics): update cli to 6.2.4
2018-10-03 20:02:02 -04:00
--get
c9d3f97b9f
feat(schematics): update @angular/cli to 6.2.3 and ngrx 6.1.0
2018-09-28 13:14:45 -04:00
--get
4ed154d11d
fix(schematics): update jest-preset-angular to 6.0.1
2018-09-21 06:55:54 -04:00
--get
e608211f46
fix(schematics): fix migration version
2018-08-29 08:08:03 -04:00
Jason Jean
0a1423a732
fix(schematics): support migrating projects with root != name from 1.7
2018-08-20 11:39:27 -04:00
Jason Jean
84636913d7
fix(schematics): update version in legacy migration to 6.2.0
2018-08-13 20:12:05 -04:00
Jason Jean
edba67f728
fix(schematics): update other @angular framework packages when updating
2018-08-13 16:10:57 -04:00
Jason Jean
b5550d367c
fix(schematics): set versions consistent with cli 6.1.2
2018-08-04 08:37:43 -04:00
Jason Jean
205e7ad7ef
feat(schematics): support @angular/cli@6.1.1
2018-08-02 13:39:19 -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
Jason Jean
4a587e392d
feat(schematics): create global karma conf
2018-07-20 12:00:05 -04:00
Jason Jean
0ad61c7acb
feat(schematics): deprecate nx update
2018-06-14 12:02:29 -04:00
Victor Savkin
72f546acda
fix(schematics): update migration script to update to Nx 6.1.0
2018-06-14 11:09:18 -04:00
Victor Savkin
f00ff2c7d2
feat(schematics): add nx.json to the default list of implicit deps
2018-06-11 10:26:08 -04:00
Jason Jean
caa5274fad
feat(schematics) add migration for implicitDependencies
2018-06-09 12:54:33 -04:00
Jason Jean
d2350c4e86
feat(schematics): fail gracefully and warn when project is missing a format npm script
2018-06-07 20:40:14 -04:00
Jason Jean
e18f94e566
feat(schematics) add migration to add affected:lint npm script
2018-06-02 18:36:33 -04:00
Jason Jean
dd0a93251a
fix(schematics): allow projects without e2e configurations and report more useful errors during add and update
2018-06-02 18:22:51 -04:00
Victor Savkin
1d4a0ef189
fix(schematics): revert the change prohibiting libs deep importing themselves
2018-05-22 12:29:36 -04:00
Victor Savkin
d917ad09e1
fix(schematics): fix the update script to point to the right version of @nrwl/nx
2018-05-22 10:02:46 -04:00
Victor Savkin
6c81127eea
cleanup: fix formatting
2018-05-21 10:44:17 -04:00
Victor Savkin
7650950abd
fix(schematic): make the migration to 6.0.0 more flexible
2018-05-18 14:15:05 -04:00
Jason Jean
31b1150229
fix(schematics): use migrate-only flag to skip installation during upgrade
2018-05-18 12:36:07 -04:00
Jason Jean
cd5ae4a1ea
fix(schematics) fix update metadata in package.json and fix migration
2018-05-16 21:07:07 -04:00