Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@agoric/bundle-source

Package Overview
Dependencies
Maintainers
5
Versions
224
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/bundle-source - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

12

CHANGELOG.md

@@ -6,2 +6,14 @@ # Change Log

## [1.1.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/bundle-source@1.1.2...@agoric/bundle-source@1.1.3) (2020-05-04)
### Bug Fixes
* default to nestedEvaluate format for better debugging ([4502f39](https://github.com/Agoric/agoric-sdk/commit/4502f39a46096b6f02a3a251989060b3bce4c3b2))
* use the new (typed) harden package ([2eb1af0](https://github.com/Agoric/agoric-sdk/commit/2eb1af08fe3967629a3ce165752fd501a5c85a96))
## [1.1.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/bundle-source@1.1.2-alpha.0...@agoric/bundle-source@1.1.2) (2020-04-13)

@@ -8,0 +20,0 @@

10

package.json
{
"name": "@agoric/bundle-source",
"version": "1.1.2",
"version": "1.1.3",
"description": "Create source bundles from ES Modules",

@@ -20,5 +20,5 @@ "main": "src/index.js",

"dependencies": {
"@agoric/acorn-eventual-send": "^2.0.2",
"@agoric/evaluate": "^2.2.3",
"@agoric/harden": "^0.0.4",
"@agoric/acorn-eventual-send": "^2.0.3",
"@agoric/evaluate": "^2.2.4",
"@agoric/harden": "^0.0.8",
"@rollup/plugin-commonjs": "^11.0.2",

@@ -47,3 +47,3 @@ "@rollup/plugin-node-resolve": "^7.1.1",

},
"gitHead": "a5fe2624fedcf3b8adf46ed6c157c29fd459b2ed"
"gitHead": "534d1a65d79f9dd176cc670f374c9de2cd081a7e"
}

@@ -8,3 +8,3 @@ import { rollup as rollup0 } from 'rollup';

const DEFAULT_MODULE_FORMAT = 'getExport';
const DEFAULT_MODULE_FORMAT = 'nestedEvaluate';
const DEFAULT_FILE_PREFIX = '/bundled-source';

@@ -101,3 +101,3 @@ const SUPPORTED_FORMATS = ['getExport', 'nestedEvaluate'];

}
`;
${sourceMap}`;
} else if (moduleFormat === 'nestedEvaluate') {

@@ -218,3 +218,4 @@ sourceMap = `//# sourceURL=${DEFAULT_FILE_PREFIX}-preamble.js\n`;

return computeExports(entrypoint, { require, log(...args) { return console.log(...args); } });
}`;
}
${sourceMap}`;
}

@@ -221,0 +222,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc