Skip to content

Commit

Permalink
feat(router-store): add @nrwl/angular data persistence operators (#3841)
Browse files Browse the repository at this point in the history
Closes #3777
  • Loading branch information
brandonroberts committed Apr 13, 2023
1 parent 2689747 commit 4482751
Show file tree
Hide file tree
Showing 7 changed files with 482 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/router-store/.eslintrc.json
@@ -1,6 +1,12 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*", "schematics-core"],
"ignorePatterns": [
"!**/*",
"schematics-core",
"data-persistence/src/public_api.ts",
"data-persistence/src/operators.ts",
"data-persistence/index.ts"
],
"overrides": [
{
"files": ["*.ts"],
Expand Down
6 changes: 6 additions & 0 deletions modules/router-store/data-persistence/index.ts
@@ -0,0 +1,6 @@
export {
fetch,
navigation,
optimisticUpdate,
pessimisticUpdate,
} from './src/operators';
1 change: 1 addition & 0 deletions modules/router-store/data-persistence/ng-package.json
@@ -0,0 +1 @@
{}

0 comments on commit 4482751

Please sign in to comment.