Skip to content

Commit

Permalink
feat: introduce the shim/no-shim exports to distinguish callers
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Aug 14, 2020
1 parent 49d1271 commit d2a6bff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eventual-send/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@agoric/eventual-send",
"version": "0.9.3",
"description": "Extend a Promise class to implement the eventual-send API",
"main": "src/index.js",
"main": "src/no-shim.js",
"types": "src/index.d.ts",
"scripts": {
"test": "tape -r esm 'test/**/test*.js'",
Expand Down
1 change: 1 addition & 0 deletions packages/eventual-send/shim.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './src/index';
1 change: 1 addition & 0 deletions packages/eventual-send/src/no-shim.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './index';

0 comments on commit d2a6bff

Please sign in to comment.