putout 33.4.1 → 33.5.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 CHANGED
@@ -1,3 +1,18 @@
1
+ 2023.11.14, v33.5.0
2
+
3
+ feature:
4
+ - 17555f4cd @putout/declare: operator-json: toJS, fromJS, __json, __filesystem
5
+ - d0e7670bf putout: @putout/processor-filesystem v2.0.0
6
+ - 616286ce9 @putout/processor-filesystem: @putout/operator-filesystem v2.0.0
7
+ - a9a39c1b5 putout: @putout/processor-json v8.0.0
8
+ - 39cc05358 putout: @putout/processor-markdown v11.0.0
9
+ - 4f9483162 putout: @putout/operator-filesystem v2.0.0
10
+ - ed4b5db53 @putout/operator-filesystem: drop support of 🐊 < 33
11
+ - d88b24cd6 @putout/operator-json: add
12
+ - 77a0c1bd4 @putout/processor-ignore: simplify
13
+ - 95143f13a @putout/procesor-filesystem: simplify
14
+ - 438fefa7d @putout/processor-json: simplify
15
+
1
16
  2023.11.14, v33.4.1
2
17
 
3
18
  feature:
package/lib/putout.js CHANGED
@@ -231,6 +231,7 @@ module.exports.operator = {
231
231
  ...require('@putout/operate'),
232
232
  ...require('@putout/compare'),
233
233
  ...require('@putout/traverse'),
234
+ ...require('@putout/operator-json'),
234
235
  ...require('@putout/operator-declare'),
235
236
  ...require('@putout/operator-regexp'),
236
237
  ...require('@putout/operator-add-args'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "33.4.1",
3
+ "version": "33.5.0",
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",
@@ -71,7 +71,8 @@
71
71
  "@putout/operate": "^11.0.0",
72
72
  "@putout/operator-add-args": "^7.0.0",
73
73
  "@putout/operator-declare": "^8.0.0",
74
- "@putout/operator-filesystem": "^1.0.1",
74
+ "@putout/operator-filesystem": "^2.0.0",
75
+ "@putout/operator-json": "^1.0.1",
75
76
  "@putout/operator-regexp": "^1.0.0",
76
77
  "@putout/plugin-apply-at": "^2.0.0",
77
78
  "@putout/plugin-apply-destructuring": "^7.0.0",
@@ -165,11 +166,11 @@
165
166
  "@putout/plugin-typescript": "^5.0.0",
166
167
  "@putout/plugin-webpack": "^3.0.0",
167
168
  "@putout/processor-css": "^7.0.0",
168
- "@putout/processor-filesystem": "^1.0.0",
169
+ "@putout/processor-filesystem": "^2.0.0",
169
170
  "@putout/processor-ignore": "^4.0.0",
170
171
  "@putout/processor-javascript": "^5.0.0",
171
- "@putout/processor-json": "^7.0.0",
172
- "@putout/processor-markdown": "^10.0.0",
172
+ "@putout/processor-json": "^8.0.0",
173
+ "@putout/processor-markdown": "^11.0.0",
173
174
  "@putout/processor-yaml": "^6.0.0",
174
175
  "@putout/traverse": "^9.0.0",
175
176
  "ajv": "^8.8.2",