Skip to content

Commit b9ffb90

Browse files
texelvsavkin
authored andcommittedOct 4, 2018
feat(nx): export data persistence operators
DataPersistence methods have been refactored to use pipeable operators, but these operators weren't exported so they could not be used outside of the library. Now, users will be able to import the operators themselves.
1 parent f1d4dd9 commit b9ffb90

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

Diff for: ‎packages/nx/index.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1-
export { DataPersistence } from './src/data-persistence';
1+
export {
2+
DataPersistence,
3+
fetch,
4+
navigation,
5+
optimisticUpdate,
6+
pessimisticUpdate
7+
} from './src/data-persistence';
28
export { NxModule } from './src/nx.module';

0 commit comments

Comments
 (0)
Please sign in to comment.