goldstein 7.2.0 → 7.3.1

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 CHANGED
@@ -1,3 +1,16 @@
1
+ 2026.02.17, v7.3.1
2
+
3
+ feature:
4
+ - 45d4a07 goldstein: redlint v6.0.0
5
+ - 341cd47 goldstein: putout v42.0.1
6
+ - 04f9c6e goldstein: madrun v13.0.0
7
+ - dc41486 goldstein: eslint-plugin-putout v31.0.0
8
+
9
+ 2026.02.15, v7.3.0
10
+
11
+ fix:
12
+ - 5af35c8 goldstein: infinite loop
13
+
1
14
  2026.02.12, v7.2.0
2
15
 
3
16
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goldstein",
3
- "version": "7.2.0",
3
+ "version": "7.3.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "JavaScript with no limits",
@@ -39,7 +39,7 @@
39
39
  "acorn-typescript": "^1.4.13",
40
40
  "estree-to-babel": "^12.0.0",
41
41
  "estree-util-attach-comments": "^3.0.0",
42
- "putout": "^41.0.0",
42
+ "putout": "^42.0.1",
43
43
  "try-catch": "^4.0.2"
44
44
  },
45
45
  "license": "MIT",
@@ -52,12 +52,12 @@
52
52
  "esbuild": "^0.27.0",
53
53
  "esbuild-node-builtins": "^0.1.0",
54
54
  "eslint": "^10.0.0",
55
- "eslint-plugin-putout": "^30.0.1",
56
- "madrun": "^12.0.0",
55
+ "eslint-plugin-putout": "^31.0.0",
56
+ "madrun": "^13.0.0",
57
57
  "mock-require": "^3.0.3",
58
58
  "montag": "^1.2.1",
59
59
  "nodemon": "^3.0.1",
60
- "redlint": "^5.0.0",
60
+ "redlint": "^6.0.0",
61
61
  "runsome": "^1.0.0",
62
62
  "supertape": "^12.0.0",
63
63
  "typescript": "^5.0.3"
@@ -10,7 +10,12 @@ export default function fn(Parser) {
10
10
  node.properties = [];
11
11
  this.next();
12
12
 
13
+ let i = 1;
14
+
13
15
  while (!this.eat(tt.braceR)) {
16
+ if (++i > 10_000)
17
+ break;
18
+
14
19
  if (!first) {
15
20
  this.eat(tt.comma);
16
21
  this.eat(tt.semi);