Skip to content

Commit

Permalink
fix(imports): fix up manual imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAntix committed Dec 5, 2019
1 parent 97754e7 commit 08394ad
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/getValue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { splitPath } from './splitPath';
import { splitPath } from './splitPath.js';

/**
* gets a value from a context by property path
Expand Down
10 changes: 8 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
export * from './bind';
//# sourceMappingURL=index.js.map
export * from './bind.js';
export * from './getBindingMemberName.js';
export * from './getBindings.js';
export * from './getValue.js';
export * from './setValue.js';
export * from './splitPath.js';
export * from './watch.js';
//# sourceMappingURL=index.js.map
4 changes: 2 additions & 2 deletions src/setValue.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { splitPath } from './splitPath';
import { splitPath } from './splitPath.js';

/**
* Set a value on the context object by path, will build the object as it goes
*
*
* *nb not idempotent will change the value passed in, see below for idempotent call
*
* @param rootContext context object to set value on
Expand Down

0 comments on commit 08394ad

Please sign in to comment.