putout 35.36.2 → 35.37.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.
Files changed (3) hide show
  1. package/ChangeLog +17 -0
  2. package/package.json +5 -3
  3. package/putout.json +1 -0
package/ChangeLog CHANGED
@@ -1,3 +1,20 @@
1
+ 2024.07.15, v35.37.1
2
+
3
+ feature:
4
+ - 00d3a41c2 @putout/engine-reporter: simple-import: import from putout (#214)
5
+ - d15b34e88 @putout/engine-report: convert to ESLint v9
6
+ - f5e2807ab @putout/plugin-remove-quotes-from-import-assertions: add
7
+ - 075951d16 @putout/compare: improve support of __imports
8
+
9
+ 2024.07.14, v35.37.0
10
+
11
+ feature:
12
+ - e7eb5dc4e @putout/plugin-remove-quotes-from-import-assertions: add
13
+ - 075951d16 @putout/compare: improve support of __imports
14
+ - 4e57c70e7 @putout/plugin-remove-unused-variables: try-catch: destructuring
15
+ - d19aae67f @putout/plugin-promises: apply-with-resolvers: add
16
+ - 4b556cb10 putout: just-camel-case v6.2.0
17
+
1
18
  2024.07.01, v35.36.2
2
19
 
3
20
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.36.2",
3
+ "version": "35.37.1",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",
@@ -25,7 +25,8 @@
25
25
  "./transform": "./lib/transform.js",
26
26
  "./find-places": "./lib/find-places.js",
27
27
  "./register": "./lib/loader/register.mjs",
28
- "./ignores": "./lib/ignores.js"
28
+ "./ignores": "./lib/ignores.js",
29
+ "./simple-import": "./lib/cli/simple-import.js"
29
30
  },
30
31
  "bin": {
31
32
  "putout": "bin/tracer.mjs"
@@ -148,6 +149,7 @@
148
149
  "@putout/plugin-remove-empty": "^12.0.0",
149
150
  "@putout/plugin-remove-iife": "^4.0.0",
150
151
  "@putout/plugin-remove-nested-blocks": "^6.0.0",
152
+ "@putout/plugin-remove-quotes-from-import-assertions": "^1.0.0",
151
153
  "@putout/plugin-remove-unreachable-code": "^1.0.0",
152
154
  "@putout/plugin-remove-unreferenced-variables": "^4.0.0",
153
155
  "@putout/plugin-remove-unused-expressions": "^9.0.0",
@@ -231,7 +233,7 @@
231
233
  "eslint": "^9.0.0",
232
234
  "eslint-plugin-n": "^17.0.0",
233
235
  "eslint-plugin-putout": "^22.0.0",
234
- "just-camel-case": "^4.0.2",
236
+ "just-camel-case": "^6.2.0",
235
237
  "lerna": "^6.0.1",
236
238
  "madrun": "^10.0.0",
237
239
  "mock-require": "^3.0.2",
package/putout.json CHANGED
@@ -229,6 +229,7 @@
229
229
  "remove-nested-blocks",
230
230
  "remove-unreachable-code",
231
231
  "remove-duplicate-keys",
232
+ "remove-quotes-from-import-assertions",
232
233
  "reuse-duplicate-init",
233
234
  "split-assignment-expressions",
234
235
  "split-variable-declarations",