Skip to content

Commit

Permalink
fix(captp): stop creating dist bundles
Browse files Browse the repository at this point in the history
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
warner committed Jun 24, 2020
1 parent d64f527 commit 7067ae0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 33 deletions.
13 changes: 4 additions & 9 deletions packages/captp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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'",
Expand All @@ -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"
Expand Down
24 changes: 0 additions & 24 deletions packages/captp/rollup.config.js

This file was deleted.

0 comments on commit 7067ae0

Please sign in to comment.