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 nx release 0 1 0 #40

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
## 0.2.0 (2024-04-20)


### 🚀 Features

- prototype of with-redux ([22157c9](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/22157c9))
- devtools integration, demo app ([4b219b4](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/4b219b4))
- add dataservice feature ([c6334de](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/c6334de))
- add storage sync ([ef46f75](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/ef46f75))
- update to nx 18 ([c92fbd3](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/c92fbd3))
- **redux:** add private/public feature ([284da58](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/284da58))
- **redux:** type-safe mvp ([aee6def](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/aee6def))
- **redux:** introduce `withRedux` extension ([c5fa930](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/c5fa930))

### 🩹 Fixes

- linting ([3528c2e](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/3528c2e))
- **devtools:** ssr mode ([0fa5e67](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/0fa5e67))
- **redux:** fix `never` type in reducer ([164585b](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/164585b))
- **redux:** multiple effects can subscribe to the same action ([12d0077](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/12d0077))
- **redux:** remove parameter from `noPayload` action functions ([0e83882](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/0e83882))

### ❤️ Thank You

- Basti Hoffmann @bohoffi
- Manfred Steyer
- mikezks @mikezks
- Rainer Hahnekamp @rainerhahnekamp

## 0.1.1 (2024-04-20)


### 🩹 Fixes

- **redux:** multiple effects can subscribe to the same action ([12d0077](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/12d0077))
- **redux:** remove parameter from `noPayload` action functions ([0e83882](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/0e83882))

### ❤️ Thank You

- Rainer Hahnekamp @rainerhahnekamp

## 0.1.0 (2024-03-02)


Expand Down
2 changes: 1 addition & 1 deletion libs/ngrx-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-architects/ngrx-toolkit",
"version": "0.1.2",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "GitHub",
Expand Down
3 changes: 3 additions & 0 deletions npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{

}
8 changes: 8 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
"{workspaceRoot}/.eslintignore",
"{workspaceRoot}/eslint.config.js"
]
},
"nx-release-publish": {
"dependsOn": [
"build"
],
"options": {
"packageRoot": "dist/libs/ngrx-toolkit"
}
}
},
"namedInputs": {
Expand Down