putout 33.4.0 → 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,25 @@
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
+
16
+ 2023.11.14, v33.4.1
17
+
18
+ feature:
19
+ - 7fc18d0d1 putout: @putout/plugin-putout v16.0.0
20
+ - 3d4b1c229 @putout/plugin-putout: drop support of 🐊 < 33
21
+ - 1126d0be3 @putout/plugin-putout: declare: readFileContent, writeFileContent
22
+
1
23
  2023.11.14, v33.4.0
2
24
 
3
25
  fix:
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.0",
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",
@@ -120,7 +121,7 @@
120
121
  "@putout/plugin-npmignore": "^2.0.0",
121
122
  "@putout/plugin-package-json": "^5.0.0",
122
123
  "@putout/plugin-promises": "^13.0.0",
123
- "@putout/plugin-putout": "^15.0.0",
124
+ "@putout/plugin-putout": "^16.0.0",
124
125
  "@putout/plugin-putout-config": "^4.0.0",
125
126
  "@putout/plugin-regexp": "^8.0.0",
126
127
  "@putout/plugin-remove-console": "^6.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",