@putout/printer 1.76.0 → 1.76.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.
package/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2023.05.01, v1.76.1
2
+
3
+ feature:
4
+ - 042d621 @putout/printer: member-expression: mv to dir
5
+
1
6
  2023.04.28, v1.76.0
2
7
 
3
8
  feature:
@@ -2,7 +2,7 @@
2
2
 
3
3
  const functions = require('./functions/functions');
4
4
  const unaryExpressions = require('./unary-expressions');
5
- const memberExpressions = require('./member-expressions');
5
+ const memberExpressions = require('./member-expressions/member-expressions');
6
6
 
7
7
  const {
8
8
  ClassExpression,
@@ -6,7 +6,7 @@ const {
6
6
  isLogicalExpression,
7
7
  } = require('@babel/types');
8
8
 
9
- const {chain} = require('./chain/chain');
9
+ const {chain} = require('./chain');
10
10
 
11
11
  module.exports.MemberExpression = (path, {print, maybe, traverse}) => {
12
12
  const {computed} = path.node;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/printer",
3
- "version": "1.76.0",
3
+ "version": "1.76.1",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Simplest possible opinionated Babel AST printer fro 🐊Putout",