@putout/babel 5.0.6 → 5.1.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/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [NPMIMGURL]: https://img.shields.io/npm/v/@putout/babel.svg?style=flat&longCache=true
4
4
  [NPMURL]: https://npmjs.org/package/@putout/babel "npm"
5
5
 
6
- **CommonJS** pre-builts of Babel 8: if you want to migrate to [v8](https://github.com/babel/babel/releases/tag/v8.0.0-beta.3) but cannot support **ESM** right now.
6
+ Pre-builts of Babel 8.
7
7
 
8
8
  Includes:
9
9
  - [`Remove Babel 7 from the codebase`](https://github.com/babel/babel/pull/17618);
@@ -13,18 +13,18 @@ Includes:
13
13
  - [`Rename TSImportType.argument to .source`](https://github.com/babel/babel/pull/17610);
14
14
  - [`Remove decorator parser plugin options`](https://github.com/babel/babel/pull/17643);
15
15
  - [`Rename blacklist option`](https://github.com/babel/babel/pull/17671);
16
-
16
+ - [`Ensure `parseExpression` with `tokens: true` returns the exported tokens`](https://github.com/babel/babel/pull/17666);
17
17
 
18
18
  Usage
19
19
 
20
20
  ```js
21
- const {
21
+ import {
22
22
  parse,
23
23
  types,
24
24
  generate,
25
25
  template,
26
26
  codeFrameColumns,
27
- } = require('@putout/babel');
27
+ } from '@putout/babel';
28
28
  ```
29
29
 
30
30
  ## License
package/bundle/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  export * from '@babel/parser';
2
2
  import * as types from '@babel/types';
3
3
  export { types };
4
- export { traverse } from '@babel/types';