-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(captp): stop creating dist bundles
This is the last code bundle we were making during `yarn build`, and it caused problems in the contract-deploy step (different versions of HandledPromise). We still have a build step in `wallet-frontend` (which builds the React browser app).
- Loading branch information
Showing
2 changed files
with
4 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,23 +10,21 @@ | |
"author": "Michael FIG <[email protected]>", | ||
"homepage": "https://github.com/Agoric/agoric-sdk#readme", | ||
"license": "Apache-2.0", | ||
"main": "dist/captp.cjs.js", | ||
"main": "lib/captp.js", | ||
"module": "lib/captp.js", | ||
"browser": "dist/captp.umd.js", | ||
"directories": { | ||
"lib": "lib", | ||
"test": "test" | ||
}, | ||
"files": [ | ||
"lib", | ||
"dist" | ||
"lib" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Agoric/agoric-sdk.git" | ||
}, | ||
"scripts": { | ||
"build": "rollup -c", | ||
"build": "exit 0", | ||
"test": "tape -r esm 'test/**/*.js'", | ||
"lint-fix": "eslint --fix '**/*.js'", | ||
"lint-check": "eslint '**/*.js'", | ||
|
@@ -44,10 +42,7 @@ | |
"@agoric/marshal": "^0.2.2", | ||
"@agoric/nat": "^2.0.1", | ||
"@agoric/produce-promise": "^0.1.2", | ||
"esm": "^3.2.5", | ||
"rollup": "^1.24.0", | ||
"rollup-plugin-commonjs": "^10.1.0", | ||
"rollup-plugin-node-resolve": "^5.2.0" | ||
"esm": "^3.2.5" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Agoric/agoric-sdk/issues" | ||
|
This file was deleted.
Oops, something went wrong.