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

@endo/static-module-record

Package Overview
Dependencies
Maintainers
4
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@endo/static-module-record - npm Package Compare versions

Comparing version 0.7.0 to 0.7.1

9

CHANGELOG.md

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

### [0.7.1](https://github.com/endojs/endo/compare/@endo/static-module-record@0.7.0...@endo/static-module-record@0.7.1) (2022-04-12)
### Bug Fixes
* **static-module-record:** use `Object.create(null)` to prevent crashes ([6af1201](https://github.com/endojs/endo/commit/6af1201969319cf17a22b289e920c67a7fce47bd))
## [0.7.0](https://github.com/endojs/endo/compare/@endo/static-module-record@0.6.15...@endo/static-module-record@0.7.0) (2022-03-07)

@@ -8,0 +17,0 @@

12

package.json
{
"name": "@endo/static-module-record",
"version": "0.7.0",
"version": "0.7.1",
"description": "Shim for the SES StaticModuleRecord and module-to-program transformer",

@@ -42,8 +42,8 @@ "keywords": [

"@babel/types": "^7.17.0",
"ses": "^0.15.11"
"ses": "^0.15.12"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@endo/eslint-config": "^0.4.6",
"@endo/ses-ava": "^0.2.21",
"@endo/eslint-config": "^0.4.7",
"@endo/ses-ava": "^0.2.22",
"ava": "^3.12.1",

@@ -59,3 +59,3 @@ "babel-eslint": "^10.0.3",

"prettier": "^1.19.1",
"typescript": "~4.5.5"
"typescript": "~4.6.2"
},

@@ -87,3 +87,3 @@ "files": [

},
"gitHead": "9ddd58b4a26755cdba9403b0cb042b2067c69832"
"gitHead": "59e511891ab67f4fa52d67141510974e22362134"
}

@@ -55,6 +55,6 @@ import * as babelParser from '@babel/parser';

// never assigned to.
fixedExportMap: {},
fixedExportMap: Object.create(null),
// Record of imported module specifier names to list of importNames.
// The importName '*' is that module's module namespace object.
imports: {},
imports: Object.create(null),
// List of module specifiers that we export all from.

@@ -65,5 +65,5 @@ exportAlls: [],

// localName.
liveExportMap: {},
liveExportMap: Object.create(null),
hoistedDecls: [],
importSources: {},
importSources: Object.create(null),
importDecls: [],

@@ -70,0 +70,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