@endo/static-module-record
Advanced tools
Comparing version 0.7.0 to 0.7.1
@@ -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 @@ |
{ | ||
"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 @@ }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57106
Updatedses@^0.15.12