goldstein 6.0.0 → 6.0.2

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,17 @@
1
+ 2025.05.29, v6.0.2
2
+
3
+ feature:
4
+ - 7dcb1b1 goldstein: eslint-plugin-putout v27.0.0
5
+ - 843620e goldstein: @putout/plugin-try-catch v6.0.0
6
+
7
+ 2025.04.09, v6.0.1
8
+
9
+ feature:
10
+ - 7df9a4e goldstein: putout v40.0.1
11
+ - 219f54a goldstein: estree-to-babel v11.0.2
12
+ - 8525d2a goldstein: check-dts v0.9.0
13
+ - 44818e8 goldstein: @putout/plugin-try-catch v5.0.0
14
+
1
15
  2025.03.26, v6.0.0
2
16
 
3
17
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goldstein",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "JavaScript with no limits",
@@ -29,13 +29,13 @@
29
29
  "dependencies": {
30
30
  "@putout/plugin-declare": "^5.0.0",
31
31
  "@putout/plugin-logical-expressions": "^7.0.0",
32
- "@putout/plugin-try-catch": "^4.0.0",
32
+ "@putout/plugin-try-catch": "^6.0.0",
33
33
  "@putout/printer": "^14.1.1",
34
34
  "acorn": "^8.7.1",
35
35
  "acorn-typescript": "^1.4.13",
36
- "estree-to-babel": "^10.1.0",
36
+ "estree-to-babel": "^11.0.2",
37
37
  "estree-util-attach-comments": "^3.0.0",
38
- "putout": "^39.1.0",
38
+ "putout": "^40.0.1",
39
39
  "try-catch": "^3.0.1"
40
40
  },
41
41
  "license": "MIT",
@@ -45,11 +45,11 @@
45
45
  "@putout/plugin-goldstein": "./rules/goldstein",
46
46
  "@putout/test": "^13.0.0",
47
47
  "c8": "^10.0.0",
48
- "check-dts": "^0.8.0",
48
+ "check-dts": "^0.9.0",
49
49
  "esbuild": "^0.25.0",
50
50
  "esbuild-node-builtins": "^0.1.0",
51
51
  "eslint": "^9.2.0",
52
- "eslint-plugin-putout": "^26.1.0",
52
+ "eslint-plugin-putout": "^27.0.0",
53
53
  "madrun": "^11.0.0",
54
54
  "mock-require": "^3.0.3",
55
55
  "montag": "^1.2.1",
@@ -1,4 +1,4 @@
1
- import estreeToBabel from 'estree-to-babel';
1
+ import {estreeToBabel} from 'estree-to-babel';
2
2
  import {transform} from 'putout';
3
3
  import {print} from '../printer/index.js';
4
4
  import * as removeImportTry from './remove-import-try/index.js';
@@ -1,4 +1,4 @@
1
- import estreeToBabel from 'estree-to-babel';
1
+ import {estreeToBabel} from 'estree-to-babel';
2
2
  import typescript from 'acorn-typescript';
3
3
  import {extendParser} from '../parser/index.js';
4
4
  import keywordFn from '../keyword-fn/index.js';
@@ -6,8 +6,8 @@ export default function keywordImport(Parser) {
6
6
  return class extends Parser {
7
7
  parseImport(node) {
8
8
  this.next();
9
-
10
9
  // import '...'
10
+
11
11
  /* c8 ignore start */
12
12
  if (this.type === tokTypes.string) {
13
13
  node.specifiers = empty;