Skip to content

Commit 4482751

Browse files
feat(router-store): add @nrwl/angular data persistence operators (#3841)
Closes #3777
1 parent 2689747 commit 4482751

File tree

7 files changed

+482
-1
lines changed

7 files changed

+482
-1
lines changed

modules/router-store/.eslintrc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*", "schematics-core"],
3+
"ignorePatterns": [
4+
"!**/*",
5+
"schematics-core",
6+
"data-persistence/src/public_api.ts",
7+
"data-persistence/src/operators.ts",
8+
"data-persistence/index.ts"
9+
],
410
"overrides": [
511
{
612
"files": ["*.ts"],
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export {
2+
fetch,
3+
navigation,
4+
optimisticUpdate,
5+
pessimisticUpdate,
6+
} from './src/operators';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)