Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Provide Angular 7 support, Improve docs portal, update typings #72

Merged
merged 11 commits into from
May 3, 2019

Conversation

jamesbs
Copy link
Member

@jamesbs jamesbs commented Jan 24, 2019

Closes #8
Changes have been made across the board to a number of categories:
Library Consumers:

  • Angular 7 is now supported
  • Documentation portal is now provided through docsify

General:

  • Upgrade versions of major packages to use latest, ie. Typescript, immutable
  • Fix and improve type issues across the board to match TS strict mode
  • Clean up documentation to remove links to deprecated repos, old badges, etc.
  • Removed ts-doc api reference support
  • Fix minor issues with the example app

Dev workflow:

  • Remove unnecessary hoisting of packages which were only used in a child package
  • Remove exact version matching of yarn installs, this created multi version dependency issues for packages which provided ranges versus the package as specified in yarn. switch to passing --frozen-lockfile into the ci install task instead
  • Publish dist folders only and have package main load from the typescript source to eliminate unnecessary building in development, and publishing "un-needed" files for production

James Salas added 8 commits January 17, 2019 13:31
- update all package dependencies
- update versions of internal packages
- update example-app to resemble angular-cli 7 app
- get app and tests working
* fix: typescript strict issues, remove many instances of any, fix minor bugs identified due to type mismatches
* feat: upgrade immutable, rework yarn versions, bump version, stop hoisting, change main on source package.json
* chore: cleanup docs, remove support for ts-doc api ref, move to docsify
…#71)

* fix: resolve issue with example-app compilation
* chore: rework build scripts, include ability to run example-app as monorepo script
@jamesbs
Copy link
Member Author

jamesbs commented Jan 24, 2019

@smithad15 Can you comment on the workflow changes in this PR? There are a number of changes included that impact things you implemented: ie. yarn exact match on installs. Also, can you provide guidance on a solid publishing strategy to fit our pipeline? The current CI pipeline doesn't support publishing a canary release as "premajor", meaning we don't have a way (afaik) of bumping the package version to 10.0.0-alpha. I had manually updated the version numbers in all packages + lerna but I'm expecting that to have to be redone. I haven't made any decisions around this issue since I feel you already have an idea of what that process should look like.

.prettierignore Outdated Show resolved Hide resolved
.yarnrc Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
docs/CHANGELOG.md Outdated Show resolved Hide resolved
docs/CONTRIBUTING.md Outdated Show resolved Hide resolved
packages/form/CHANGELOG.md Outdated Show resolved Hide resolved
packages/form/package.json Outdated Show resolved Hide resolved
packages/router/CHANGELOG.md Outdated Show resolved Hide resolved
packages/router/package.json Outdated Show resolved Hide resolved
packages/store/package.json Outdated Show resolved Hide resolved
@smithad15
Copy link
Member

Through Lerna's version/publish command we will be able to put out premajor versions

@szb512
Copy link

szb512 commented Mar 14, 2019

#8 refers to this problem.

smithad15 and others added 2 commits May 3, 2019 14:13
* chore: add auto0formatting to docs

* chore: change deps to exact versions

* fix: import error during prod build of example-app

* chore: revert package version for proper auto-increment

* chore: remove unneeded cli files

* chore: restore changelogs

* chore: add example-app prod build

* chore: fix internal package declarations
@smithad15 smithad15 merged commit 0c49f94 into master May 3, 2019
@smithad15 smithad15 deleted the upgrade-angular-7 branch May 3, 2019 21:13
smithad15 pushed a commit that referenced this pull request May 4, 2019
* Upgrade angular 7 packages and example app (#65)
* fix: readme links to deprecated repo update (#66)
* fix: minor dependency and attempt to remove extraneous install step in test (#67)
* Fix Typescript strict type issues (#68)
* fix: typescript strict issues, remove many instances of any, fix minor bugs identified due to type mismatches
* Upgrade immutable version to latest (#69)
* feat: upgrade immutable, rework yarn versions, bump version, stop hoisting, change main on source package.json
* Chore: cleanup documentation (#70)
* chore: cleanup docs, remove support for ts-doc api ref, move to docsify
* fix: Issue with example-app compilation, script rework, minor cleanup (#71)
* fix: resolve issue with example-app compilation
* chore: rework build scripts, include ability to run example-app as monorepo script
* fix: update doc portal changelog
* fix: undefined import issue caused by barrel imports in form module (#74)
* chore: add PR feedback (#79)
* chore: add auto-formatting to docs
* chore: change deps to exact versions
* fix: import error during prod build of example-app
* chore: revert package version for proper auto-increment
* chore: remove unneeded cli files
* chore: restore changelogs
* chore: add example-app prod build
* chore: fix internal package declarations
* chore: restore peer dep versions

BREAKING CHANGE:
- Upgrades Angular dependencies to v7
smithad15 pushed a commit that referenced this pull request May 4, 2019
* Upgrade angular 7 packages and example app (#65)
* fix: readme links to deprecated repo update (#66)
* fix: minor dependency and attempt to remove extraneous install step in test (#67)
* Fix Typescript strict type issues (#68)
* fix: typescript strict issues, remove many instances of any, fix minor bugs identified due to type mismatches
* Upgrade immutable version to latest (#69)
* feat: upgrade immutable, rework yarn versions, bump version, stop hoisting, change main on source package.json
* Chore: cleanup documentation (#70)
* chore: cleanup docs, remove support for ts-doc api ref, move to docsify
* fix: Issue with example-app compilation, script rework, minor cleanup (#71)
* fix: resolve issue with example-app compilation
* chore: rework build scripts, include ability to run example-app as monorepo script
* fix: update doc portal changelog
* fix: undefined import issue caused by barrel imports in form module (#74)
* chore: add PR feedback (#79)
* chore: add auto-formatting to docs
* chore: change deps to exact versions
* fix: import error during prod build of example-app
* chore: revert package version for proper auto-increment
* chore: remove unneeded cli files
* chore: restore changelogs
* chore: add example-app prod build
* chore: fix internal package declarations
* chore: restore peer dep versions

BREAKING CHANGE:
- Upgrades Angular dependencies to v7
smithad15 pushed a commit that referenced this pull request May 4, 2019
* Upgrade angular 7 packages and example app (#65)
* fix: readme links to deprecated repo update (#66)
* fix: minor dependency and attempt to remove extraneous install step in test (#67)
* Fix Typescript strict type issues (#68)
* fix: typescript strict issues, remove many instances of any, fix minor bugs identified due to type mismatches
* Upgrade immutable version to latest (#69)
* feat: upgrade immutable, rework yarn versions, bump version, stop hoisting, change main on source package.json
* Chore: cleanup documentation (#70)
* chore: cleanup docs, remove support for ts-doc api ref, move to docsify
* fix: Issue with example-app compilation, script rework, minor cleanup (#71)
* fix: resolve issue with example-app compilation
* chore: rework build scripts, include ability to run example-app as monorepo script
* fix: update doc portal changelog
* fix: undefined import issue caused by barrel imports in form module (#74)
* chore: add PR feedback (#79)
* chore: add auto-formatting to docs
* chore: change deps to exact versions
* fix: import error during prod build of example-app
* chore: revert package version for proper auto-increment
* chore: remove unneeded cli files
* chore: restore changelogs
* chore: add example-app prod build
* chore: fix internal package declarations
* chore: restore peer dep versions

BREAKING CHANGE: Upgrades Angular dependencies to v7
github-actions bot pushed a commit to adrianiy/platform that referenced this pull request Sep 28, 2021
# ngredux-store-v1.0.0 (2021-09-28)

### Bug Fixes

* fix eslint ([ab4d1d3](ab4d1d3))
* **build:** No chai for you ([#209](https://github.com/AdrianInsua/platform/issues/209)) ([be35f03](be35f03))
* **deps:** Change zone.js version ([#222](https://github.com/AdrianInsua/platform/issues/222)) ([e62e149](e62e149))
* **example:** Fix local dev mode ([angular-redux#80](https://github.com/AdrianInsua/platform/issues/80)) ([angular-redux#81](https://github.com/AdrianInsua/platform/issues/81)) ([b06721f](b06721f))
* **ngReduxModule:** Generate metadata ([#237](https://github.com/AdrianInsua/platform/issues/237)) ([8b4b9d8](8b4b9d8))
* **package.json:** add redux as dependencies ([angular-redux#132](https://github.com/AdrianInsua/platform/issues/132)) ([5fdeb19](5fdeb19))

### chore

* **build:** use ng-packagr ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([dffe23a](dffe23a)), closes [angular-redux#9](https://github.com/AdrianInsua/platform/issues/9)
* **linting:** add global tslint rules ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([336cc60](336cc60)), closes [angular-redux#4](https://github.com/AdrianInsua/platform/issues/4)

### Features

* add bootstraping script ([3fd7b32](3fd7b32))
* add new devtools window prop name ([angular-redux#58](https://github.com/AdrianInsua/platform/issues/58)) ([55b15a6](55b15a6))
* bump angular version to 11.0.5 ([1b8bb72](1b8bb72))
* Introduced a new function called provideStore() which accepts a already created Redux store ([angular-redux#142](https://github.com/AdrianInsua/platform/issues/142)) ([a6c4aaf](a6c4aaf)), closes [angular-redux#141](https://github.com/AdrianInsua/platform/issues/141)
* refactor packages to match new ng-packager ([710edef](710edef))
* upgrade to angular 7 ([angular-redux#72](https://github.com/AdrianInsua/platform/issues/72)) ([18d9245](18d9245)), closes [angular-redux#65](https://github.com/AdrianInsua/platform/issues/65) [angular-redux#66](https://github.com/AdrianInsua/platform/issues/66) [angular-redux#67](https://github.com/AdrianInsua/platform/issues/67) [angular-redux#68](https://github.com/AdrianInsua/platform/issues/68) [angular-redux#69](https://github.com/AdrianInsua/platform/issues/69) [angular-redux#70](https://github.com/AdrianInsua/platform/issues/70) [angular-redux#71](https://github.com/AdrianInsua/platform/issues/71) [angular-redux#74](https://github.com/AdrianInsua/platform/issues/74) [angular-redux#79](https://github.com/AdrianInsua/platform/issues/79)
* Typescript Port ([angular-redux#33](https://github.com/AdrianInsua/platform/issues/33)) ([33ea991](33ea991)), closes [angular-redux#35](https://github.com/AdrianInsua/platform/issues/35) [angular-redux#36](https://github.com/AdrianInsua/platform/issues/36) [angular-redux#37](https://github.com/AdrianInsua/platform/issues/37) [angular-redux#38](https://github.com/AdrianInsua/platform/issues/38) [angular-redux#39](https://github.com/AdrianInsua/platform/issues/39) [angular-redux#52](https://github.com/AdrianInsua/platform/issues/52) [angular-redux#50](https://github.com/AdrianInsua/platform/issues/50) [angular-redux#55](https://github.com/AdrianInsua/platform/issues/55) [angular-redux#53](https://github.com/AdrianInsua/platform/issues/53)
* **aot:** Support AoT - [#223](https://github.com/AdrianInsua/platform/issues/223) ([#226](https://github.com/AdrianInsua/platform/issues/226)) ([a6d7826](a6d7826))
* **dispatch:** Create dispatch decorator ([#385](https://github.com/AdrianInsua/platform/issues/385)) ([4513566](4513566))

### BREAKING CHANGES

* Upgrades Angular dependencies to v7
* **build:** - changes the output to conform to the Angular Package Format. This may cause subtle differences in consumption behaviour
- peer dependencies have been corrected to actual dependencies
* **linting:** - ConnectArray has been renamed to ConnectArrayDirective
- ReactiveConnect has been renamed to ReactiveConnectDirective
- Connect has been renamed to ConnectDirective
- interfaces with an "I" prefix have had that prefix removed (e.g "IAppStore" -> "AppStore")
github-actions bot pushed a commit to adrianiy/platform that referenced this pull request Sep 28, 2021
# ngredux-form-v1.0.0 (2021-09-28)

### Bug Fixes

* external tslint running on library source code ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([d6c6745](d6c6745))
* fix eslint ([ab4d1d3](ab4d1d3))
* fix package linking ([56354a5](56354a5))
* **form:** connect formGroup input not mapped to connect base ([angular-redux#94](https://github.com/AdrianInsua/platform/issues/94)) ([9d1d6db](9d1d6db)), closes [angular-redux#85](https://github.com/AdrianInsua/platform/issues/85)
* add typescript unused checks ([angular-redux#32](https://github.com/AdrianInsua/platform/issues/32)) ([65c4229](65c4229))
* reactive forms not updating on changes in store ([angular-redux#41](https://github.com/AdrianInsua/platform/issues/41)) ([bd87846](bd87846))
* rm WeakMap, we can't use it for key with type string ([angular-redux#15](https://github.com/AdrianInsua/platform/issues/15)) ([6a9bdc2](6a9bdc2))
* typings entry point and failing definitions ([angular-redux#36](https://github.com/AdrianInsua/platform/issues/36)) ([ae0373d](ae0373d))
* update peer dependencies from ^9.0.0 to ^10.0.0 ([angular-redux#87](https://github.com/AdrianInsua/platform/issues/87)) ([fcea502](fcea502))

### chore

* **build:** use ng-packagr ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([dffe23a](dffe23a)), closes [angular-redux#9](https://github.com/AdrianInsua/platform/issues/9)
* **linting:** add global tslint rules ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([336cc60](336cc60)), closes [angular-redux#4](https://github.com/AdrianInsua/platform/issues/4)

### Features

* add bootstraping script ([3fd7b32](3fd7b32))
* add peer dep support for Angular 5 ([angular-redux#51](https://github.com/AdrianInsua/platform/issues/51)) ([13b4cb8](13b4cb8))
* bump angular version to 11.0.5 ([1b8bb72](1b8bb72))
* refactor packages to match new ng-packager ([710edef](710edef))
* split directives into separate modules ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([6250ea8](6250ea8))
* upgrade to angular 7 ([angular-redux#72](https://github.com/AdrianInsua/platform/issues/72)) ([18d9245](18d9245)), closes [angular-redux#65](https://github.com/AdrianInsua/platform/issues/65) [angular-redux#66](https://github.com/AdrianInsua/platform/issues/66) [angular-redux#67](https://github.com/AdrianInsua/platform/issues/67) [angular-redux#68](https://github.com/AdrianInsua/platform/issues/68) [angular-redux#69](https://github.com/AdrianInsua/platform/issues/69) [angular-redux#70](https://github.com/AdrianInsua/platform/issues/70) [angular-redux#71](https://github.com/AdrianInsua/platform/issues/71) [angular-redux#74](https://github.com/AdrianInsua/platform/issues/74) [angular-redux#79](https://github.com/AdrianInsua/platform/issues/79)

### BREAKING CHANGES

* Upgrades Angular dependencies to v7
* **build:** - changes the output to conform to the Angular Package Format. This may cause subtle differences in consumption behaviour
- peer dependencies have been corrected to actual dependencies
* **linting:** - ConnectArray has been renamed to ConnectArrayDirective
- ReactiveConnect has been renamed to ReactiveConnectDirective
- Connect has been renamed to ConnectDirective
- interfaces with an "I" prefix have had that prefix removed (e.g "IAppStore" -> "AppStore")
github-actions bot pushed a commit to adrianiy/platform that referenced this pull request Sep 28, 2021
# ngredux-router-v1.0.0 (2021-09-28)

### Bug Fixes

* fix eslint ([ab4d1d3](ab4d1d3))
* fix package linking ([56354a5](56354a5))
* update peer dependencies from ^9.0.0 to ^10.0.0 ([angular-redux#87](https://github.com/AdrianInsua/platform/issues/87)) ([fcea502](fcea502))

### chore

* **build:** use ng-packagr ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([dffe23a](dffe23a)), closes [angular-redux#9](https://github.com/AdrianInsua/platform/issues/9)
* **linting:** add global tslint rules ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([336cc60](336cc60)), closes [angular-redux#4](https://github.com/AdrianInsua/platform/issues/4)

### Features

* add bootstraping script ([3fd7b32](3fd7b32))
* bump angular version to 11.0.5 ([1b8bb72](1b8bb72))
* refactor packages to match new ng-packager ([710edef](710edef))
* upgrade to angular 7 ([angular-redux#72](https://github.com/AdrianInsua/platform/issues/72)) ([18d9245](18d9245)), closes [angular-redux#65](https://github.com/AdrianInsua/platform/issues/65) [angular-redux#66](https://github.com/AdrianInsua/platform/issues/66) [angular-redux#67](https://github.com/AdrianInsua/platform/issues/67) [angular-redux#68](https://github.com/AdrianInsua/platform/issues/68) [angular-redux#69](https://github.com/AdrianInsua/platform/issues/69) [angular-redux#70](https://github.com/AdrianInsua/platform/issues/70) [angular-redux#71](https://github.com/AdrianInsua/platform/issues/71) [angular-redux#74](https://github.com/AdrianInsua/platform/issues/74) [angular-redux#79](https://github.com/AdrianInsua/platform/issues/79)

### BREAKING CHANGES

* Upgrades Angular dependencies to v7
* **build:** - changes the output to conform to the Angular Package Format. This may cause subtle differences in consumption behaviour
- peer dependencies have been corrected to actual dependencies
* **linting:** - ConnectArray has been renamed to ConnectArrayDirective
- ReactiveConnect has been renamed to ReactiveConnectDirective
- Connect has been renamed to ConnectDirective
- interfaces with an "I" prefix have had that prefix removed (e.g "IAppStore" -> "AppStore")
github-actions bot pushed a commit to adrianiy/platform that referenced this pull request Sep 28, 2021
# @adrian.insua/ngredux-store-v1.0.0 (2021-09-28)

### Bug Fixes

* change package names to be user scoped ([c0c9d1d](c0c9d1d))
* fix eslint ([ab4d1d3](ab4d1d3))
* **build:** No chai for you ([#209](https://github.com/AdrianInsua/platform/issues/209)) ([be35f03](be35f03))
* **deps:** Change zone.js version ([#222](https://github.com/AdrianInsua/platform/issues/222)) ([e62e149](e62e149))
* **example:** Fix local dev mode ([angular-redux#80](https://github.com/AdrianInsua/platform/issues/80)) ([angular-redux#81](https://github.com/AdrianInsua/platform/issues/81)) ([b06721f](b06721f))
* **ngReduxModule:** Generate metadata ([#237](https://github.com/AdrianInsua/platform/issues/237)) ([8b4b9d8](8b4b9d8))
* **package.json:** add redux as dependencies ([angular-redux#132](https://github.com/AdrianInsua/platform/issues/132)) ([5fdeb19](5fdeb19))

### chore

* **build:** use ng-packagr ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([dffe23a](dffe23a)), closes [angular-redux#9](https://github.com/AdrianInsua/platform/issues/9)
* **linting:** add global tslint rules ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([336cc60](336cc60)), closes [angular-redux#4](https://github.com/AdrianInsua/platform/issues/4)

### Features

* add bootstraping script ([3fd7b32](3fd7b32))
* add new devtools window prop name ([angular-redux#58](https://github.com/AdrianInsua/platform/issues/58)) ([55b15a6](55b15a6))
* bump angular version to 11.0.5 ([1b8bb72](1b8bb72))
* Introduced a new function called provideStore() which accepts a already created Redux store ([angular-redux#142](https://github.com/AdrianInsua/platform/issues/142)) ([a6c4aaf](a6c4aaf)), closes [angular-redux#141](https://github.com/AdrianInsua/platform/issues/141)
* refactor packages to match new ng-packager ([710edef](710edef))
* upgrade to angular 7 ([angular-redux#72](https://github.com/AdrianInsua/platform/issues/72)) ([18d9245](18d9245)), closes [angular-redux#65](https://github.com/AdrianInsua/platform/issues/65) [angular-redux#66](https://github.com/AdrianInsua/platform/issues/66) [angular-redux#67](https://github.com/AdrianInsua/platform/issues/67) [angular-redux#68](https://github.com/AdrianInsua/platform/issues/68) [angular-redux#69](https://github.com/AdrianInsua/platform/issues/69) [angular-redux#70](https://github.com/AdrianInsua/platform/issues/70) [angular-redux#71](https://github.com/AdrianInsua/platform/issues/71) [angular-redux#74](https://github.com/AdrianInsua/platform/issues/74) [angular-redux#79](https://github.com/AdrianInsua/platform/issues/79)
* Typescript Port ([angular-redux#33](https://github.com/AdrianInsua/platform/issues/33)) ([33ea991](33ea991)), closes [angular-redux#35](https://github.com/AdrianInsua/platform/issues/35) [angular-redux#36](https://github.com/AdrianInsua/platform/issues/36) [angular-redux#37](https://github.com/AdrianInsua/platform/issues/37) [angular-redux#38](https://github.com/AdrianInsua/platform/issues/38) [angular-redux#39](https://github.com/AdrianInsua/platform/issues/39) [angular-redux#52](https://github.com/AdrianInsua/platform/issues/52) [angular-redux#50](https://github.com/AdrianInsua/platform/issues/50) [angular-redux#55](https://github.com/AdrianInsua/platform/issues/55) [angular-redux#53](https://github.com/AdrianInsua/platform/issues/53)
* **aot:** Support AoT - [#223](https://github.com/AdrianInsua/platform/issues/223) ([#226](https://github.com/AdrianInsua/platform/issues/226)) ([a6d7826](a6d7826))
* **dispatch:** Create dispatch decorator ([#385](https://github.com/AdrianInsua/platform/issues/385)) ([4513566](4513566))

### BREAKING CHANGES

* Upgrades Angular dependencies to v7
* **build:** - changes the output to conform to the Angular Package Format. This may cause subtle differences in consumption behaviour
- peer dependencies have been corrected to actual dependencies
* **linting:** - ConnectArray has been renamed to ConnectArrayDirective
- ReactiveConnect has been renamed to ReactiveConnectDirective
- Connect has been renamed to ConnectDirective
- interfaces with an "I" prefix have had that prefix removed (e.g "IAppStore" -> "AppStore")
github-actions bot pushed a commit to adrianiy/platform that referenced this pull request Sep 28, 2021
# @adrian.insua/ngredux-form-v1.0.0 (2021-09-28)

### Bug Fixes

* add typescript unused checks ([angular-redux#32](https://github.com/AdrianInsua/platform/issues/32)) ([65c4229](65c4229))
* change package names to be user scoped ([c0c9d1d](c0c9d1d))
* fix eslint ([ab4d1d3](ab4d1d3))
* fix package linking ([56354a5](56354a5))
* **form:** connect formGroup input not mapped to connect base ([angular-redux#94](https://github.com/AdrianInsua/platform/issues/94)) ([9d1d6db](9d1d6db)), closes [angular-redux#85](https://github.com/AdrianInsua/platform/issues/85)
* external tslint running on library source code ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([d6c6745](d6c6745))
* reactive forms not updating on changes in store ([angular-redux#41](https://github.com/AdrianInsua/platform/issues/41)) ([bd87846](bd87846))
* rm WeakMap, we can't use it for key with type string ([angular-redux#15](https://github.com/AdrianInsua/platform/issues/15)) ([6a9bdc2](6a9bdc2))
* typings entry point and failing definitions ([angular-redux#36](https://github.com/AdrianInsua/platform/issues/36)) ([ae0373d](ae0373d))
* update peer dependencies from ^9.0.0 to ^10.0.0 ([angular-redux#87](https://github.com/AdrianInsua/platform/issues/87)) ([fcea502](fcea502))

### chore

* **build:** use ng-packagr ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([dffe23a](dffe23a)), closes [angular-redux#9](https://github.com/AdrianInsua/platform/issues/9)
* **linting:** add global tslint rules ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([336cc60](336cc60)), closes [angular-redux#4](https://github.com/AdrianInsua/platform/issues/4)

### Features

* add bootstraping script ([3fd7b32](3fd7b32))
* add peer dep support for Angular 5 ([angular-redux#51](https://github.com/AdrianInsua/platform/issues/51)) ([13b4cb8](13b4cb8))
* bump angular version to 11.0.5 ([1b8bb72](1b8bb72))
* refactor packages to match new ng-packager ([710edef](710edef))
* split directives into separate modules ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([6250ea8](6250ea8))
* upgrade to angular 7 ([angular-redux#72](https://github.com/AdrianInsua/platform/issues/72)) ([18d9245](18d9245)), closes [angular-redux#65](https://github.com/AdrianInsua/platform/issues/65) [angular-redux#66](https://github.com/AdrianInsua/platform/issues/66) [angular-redux#67](https://github.com/AdrianInsua/platform/issues/67) [angular-redux#68](https://github.com/AdrianInsua/platform/issues/68) [angular-redux#69](https://github.com/AdrianInsua/platform/issues/69) [angular-redux#70](https://github.com/AdrianInsua/platform/issues/70) [angular-redux#71](https://github.com/AdrianInsua/platform/issues/71) [angular-redux#74](https://github.com/AdrianInsua/platform/issues/74) [angular-redux#79](https://github.com/AdrianInsua/platform/issues/79)

### BREAKING CHANGES

* Upgrades Angular dependencies to v7
* **build:** - changes the output to conform to the Angular Package Format. This may cause subtle differences in consumption behaviour
- peer dependencies have been corrected to actual dependencies
* **linting:** - ConnectArray has been renamed to ConnectArrayDirective
- ReactiveConnect has been renamed to ReactiveConnectDirective
- Connect has been renamed to ConnectDirective
- interfaces with an "I" prefix have had that prefix removed (e.g "IAppStore" -> "AppStore")
github-actions bot pushed a commit to adrianiy/platform that referenced this pull request Sep 28, 2021
# @adrian.insua/ngredux-router-v1.0.0 (2021-09-28)

### Bug Fixes

* change package names to be user scoped ([c0c9d1d](c0c9d1d))
* fix eslint ([ab4d1d3](ab4d1d3))
* fix package linking ([56354a5](56354a5))
* update peer dependencies from ^9.0.0 to ^10.0.0 ([angular-redux#87](https://github.com/AdrianInsua/platform/issues/87)) ([fcea502](fcea502))

### chore

* **build:** use ng-packagr ([angular-redux#37](https://github.com/AdrianInsua/platform/issues/37)) ([dffe23a](dffe23a)), closes [angular-redux#9](https://github.com/AdrianInsua/platform/issues/9)
* **linting:** add global tslint rules ([angular-redux#35](https://github.com/AdrianInsua/platform/issues/35)) ([336cc60](336cc60)), closes [angular-redux#4](https://github.com/AdrianInsua/platform/issues/4)

### Features

* add bootstraping script ([3fd7b32](3fd7b32))
* bump angular version to 11.0.5 ([1b8bb72](1b8bb72))
* refactor packages to match new ng-packager ([710edef](710edef))
* upgrade to angular 7 ([angular-redux#72](https://github.com/AdrianInsua/platform/issues/72)) ([18d9245](18d9245)), closes [angular-redux#65](https://github.com/AdrianInsua/platform/issues/65) [angular-redux#66](https://github.com/AdrianInsua/platform/issues/66) [angular-redux#67](https://github.com/AdrianInsua/platform/issues/67) [angular-redux#68](https://github.com/AdrianInsua/platform/issues/68) [angular-redux#69](https://github.com/AdrianInsua/platform/issues/69) [angular-redux#70](https://github.com/AdrianInsua/platform/issues/70) [angular-redux#71](https://github.com/AdrianInsua/platform/issues/71) [angular-redux#74](https://github.com/AdrianInsua/platform/issues/74) [angular-redux#79](https://github.com/AdrianInsua/platform/issues/79)

### BREAKING CHANGES

* Upgrades Angular dependencies to v7
* **build:** - changes the output to conform to the Angular Package Format. This may cause subtle differences in consumption behaviour
- peer dependencies have been corrected to actual dependencies
* **linting:** - ConnectArray has been renamed to ConnectArrayDirective
- ReactiveConnect has been renamed to ReactiveConnectDirective
- Connect has been renamed to ConnectDirective
- interfaces with an "I" prefix have had that prefix removed (e.g "IAppStore" -> "AppStore")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Upgrade Angular + CLI for example app
3 participants