putout 33.13.4 → 34.0.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,31 @@
1
+ 2023.12.09, v34.0.0
2
+
3
+ fix:
4
+ - a022aac56 @putout/operate: traverseProperties: no parentPath
5
+ - b582686dd @putout/plugin-filesystem: bundle-css: nested
6
+ - d2330890f @putout/plugin-filesystem: bundle-css: no 1:1
7
+
8
+ feature:
9
+ - 949aebe7f putout: @putout/plugin-github v11.0.0
10
+ - 141513a35 @putout/plugin-github: drop support of node < 18
11
+ - 39b09238b putout: drop support of node < 18
12
+ - e4cba8ca2 putout: @putout/plugin-nodejs v10.0.0
13
+ - 398a7705d @putout/plugin-nodejs: drop support of node < 18
14
+ - 90bce30f5 @putout/processor-css: return empty code when errors
15
+ - 607373140 @putout/plugin-nodejs: merge strict-mode
16
+ - 1de36b776 putout: @putout/processor-css v8.0.0
17
+ - d990d9f9f @putout/processor: config:
18
+ - d93b07a63 @putout/processor-css: drop support of node < 18
19
+ - 835847d6f @putout/engine-parser: hermes-parser v0.18.0
20
+ - 5976bcafb @putout/processor-css: cosmiconfig v9.0.0
21
+ - ab83bf20f @putout/processor-css: stylelint-config-standard v35.0.0
22
+ - 4efe55568 @putout/processor-css: stylelint v16.0.1
23
+ - 72b0b1b7b @putout/processor-yaml: remove useless @putout/processor-json
24
+ - f2ceb7f58 eslint-plugin-putout: safe: disable remove-useless-variables: declaration
25
+ - af37d387f eslint-plugin-putout: remove-empty-newline-after-import: is-ubuiltin
26
+ - b5a80dddf @putout/plugin-filesystem: bundle-css: errors
27
+ - 76f7f80fa @putout/cli-filesystem: createDirectory: recursive
28
+
1
29
  2023.12.07, v33.13.4
2
30
 
3
31
  fix:
@@ -27,7 +27,7 @@ function esm() {
27
27
  match: {
28
28
  '*.js': {
29
29
  'nodejs/convert-commonjs-to-esm': 'on',
30
- 'strict-mode/add-missing': 'off',
30
+ 'nodejs/add-strict-mode': 'off',
31
31
  },
32
32
  '{test,*.spec.js}': {
33
33
  'tape/convert-mock-require-to-mock-import': 'on',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "33.13.4",
3
+ "version": "34.0.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",
@@ -109,7 +109,7 @@
109
109
  "@putout/plugin-extract-sequence-expressions": "^3.0.0",
110
110
  "@putout/plugin-filesystem": "^2.0.0",
111
111
  "@putout/plugin-for-of": "^3.0.0",
112
- "@putout/plugin-github": "^10.0.0",
112
+ "@putout/plugin-github": "^11.0.0",
113
113
  "@putout/plugin-gitignore": "^4.0.0",
114
114
  "@putout/plugin-logical-expressions": "^5.0.0",
115
115
  "@putout/plugin-madrun": "^18.0.0",
@@ -120,7 +120,7 @@
120
120
  "@putout/plugin-merge-duplicate-imports": "^10.0.0",
121
121
  "@putout/plugin-montag": "^2.0.0",
122
122
  "@putout/plugin-new": "^3.0.1",
123
- "@putout/plugin-nodejs": "^9.0.0",
123
+ "@putout/plugin-nodejs": "^10.0.0",
124
124
  "@putout/plugin-npmignore": "^3.0.0",
125
125
  "@putout/plugin-package-json": "^6.0.0",
126
126
  "@putout/plugin-promises": "^13.0.0",
@@ -162,13 +162,12 @@
162
162
  "@putout/plugin-simplify-ternary": "^6.0.0",
163
163
  "@putout/plugin-split-nested-destructuring": "^3.0.0",
164
164
  "@putout/plugin-split-variable-declarations": "^3.0.0",
165
- "@putout/plugin-strict-mode": "^10.0.0",
166
165
  "@putout/plugin-tape": "^12.0.0",
167
166
  "@putout/plugin-try-catch": "^3.0.0",
168
167
  "@putout/plugin-types": "^3.0.0",
169
168
  "@putout/plugin-typescript": "^5.0.0",
170
169
  "@putout/plugin-webpack": "^3.0.0",
171
- "@putout/processor-css": "^7.0.0",
170
+ "@putout/processor-css": "^8.0.0",
172
171
  "@putout/processor-filesystem": "^2.0.0",
173
172
  "@putout/processor-ignore": "^5.0.0",
174
173
  "@putout/processor-javascript": "^5.0.0",
@@ -226,7 +225,7 @@
226
225
  },
227
226
  "license": "MIT",
228
227
  "engines": {
229
- "node": ">=16"
228
+ "node": ">=18"
230
229
  },
231
230
  "publishConfig": {
232
231
  "access": "public"
package/putout.json CHANGED
@@ -15,11 +15,12 @@
15
15
  ],
16
16
  "match": {
17
17
  "*.{mjs,ts,tsx,mts}": {
18
- "strict-mode/remove-useless": "on",
19
- "strict-mode/add-missing": "off"
18
+ "nodejs/remove-strict-mode": "on",
19
+ "nodejs/add-strict-mode": "off"
20
20
  },
21
21
  "*.{jsx,js,cjs}": {
22
- "strict-mode": "on"
22
+ "nodejs/add-strict-mode": "on",
23
+ "nodejs/remove-strict-mode": "on"
23
24
  },
24
25
  "{.,}putout.json": {
25
26
  "putout-config": "on"
@@ -68,7 +69,6 @@
68
69
  "github": "on",
69
70
  "github/set-node-versions": ["on", {
70
71
  "versions": [
71
- "16.x",
72
72
  "18.x",
73
73
  "20.x",
74
74
  "21.x"
@@ -154,7 +154,8 @@
154
154
  "npmignore": "off",
155
155
  "github": "off",
156
156
  "tape": "off",
157
- "strict-mode": "off",
157
+ "nodejs/add-strict-mode": "off",
158
+ "nodejs/remove-strict-mode": "off",
158
159
  "browserlist": "off",
159
160
  "filesystem": "off"
160
161
  },
@@ -227,7 +228,6 @@
227
228
  "declare-imports-first",
228
229
  "declare-before-reference",
229
230
  "declare",
230
- "strict-mode",
231
231
  "math",
232
232
  "putout",
233
233
  "putout-config",