goldstein 6.0.1 → 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,9 @@
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
+
1
7
  2025.04.09, v6.0.1
2
8
 
3
9
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goldstein",
3
- "version": "6.0.1",
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,7 +29,7 @@
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": "^5.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",
@@ -49,7 +49,7 @@
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",
@@ -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;