@putout/plugin-putout 29.16.0 → 29.17.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.
@@ -13,6 +13,7 @@ const {
13
13
  extract,
14
14
  compute,
15
15
  __json,
16
+ __yaml,
16
17
  } = operator;
17
18
 
18
19
  const name = '__putout_plugin_check_replace_code';
@@ -156,6 +157,9 @@ function parseKey(propertyPath) {
156
157
  if (keyPath.isIdentifier({name: '__json'}))
157
158
  return [null, __json];
158
159
 
160
+ if (keyPath.isIdentifier({name: '__yaml'}))
161
+ return [null, __yaml];
162
+
159
163
  const [isComputed, key] = compute(keyPath);
160
164
 
161
165
  if (!isComputed)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/plugin-putout",
3
- "version": "29.16.0",
3
+ "version": "29.17.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊Putout plugin helps with plugins development",