goldstein 7.1.0 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog +5 -0
- package/package.json +1 -1
- package/packages/keyword-export-no-const/index.js +1 -3
- package/packages/keyword-import/index.js +1 -0
- package/bun.lock +0 -3094
package/ChangeLog
CHANGED
package/package.json
CHANGED
|
@@ -74,9 +74,7 @@ export default function keywordExportNoConst(Parser) {
|
|
|
74
74
|
this.unexpected();
|
|
75
75
|
|
|
76
76
|
node.source = this.parseExprAtom();
|
|
77
|
-
|
|
78
|
-
if (this.options.ecmaVersion >= 16)
|
|
79
|
-
node.attributes = this.parseWithClause();
|
|
77
|
+
node.attributes = this.parseWithClause();
|
|
80
78
|
} else {
|
|
81
79
|
for (let i = 0, list = node.specifiers; i < list.length; ++i) {
|
|
82
80
|
// check for keywords used as local names
|