@putout/babel 1.4.1 → 1.5.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/README.md CHANGED
@@ -23,7 +23,6 @@ Becaouse each of them will be about `1.8mb`:
23
23
 
24
24
  <img width="479" alt="image" src="https://github.com/putoutjs/babel/assets/1573141/aa75f1bb-c312-4640-a605-fed0a0759427">
25
25
 
26
-
27
26
  ## License
28
27
 
29
28
  MIT
@@ -1,3 +1,9 @@
1
+ export { default as template } from '@babel/template';
2
+ export { default as generate } from '@babel/generator';
3
+ export { default as traverse } from '@babel/traverse';
4
+ export * from '@babel/code-frame';
5
+ export { type } from '@babel/code-frame';
6
+
1
7
  // NOTE: This file is autogenerated. Do not modify.
2
8
  // See packages/babel-types/scripts/generators/typescript-legacy.js for script used.
3
9
 
@@ -3462,7 +3462,7 @@ var require_globals2 = __commonJS({
3462
3462
  }
3463
3463
  });
3464
3464
 
3465
- // babel/index.js
3465
+ // babel/index.mjs
3466
3466
  var babel_exports = {};
3467
3467
  __export(babel_exports, {
3468
3468
  codeFrameColumns: () => codeFrameColumns,
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@putout/babel",
3
- "version": "1.4.1",
4
- "type": "module",
3
+ "version": "1.5.1",
4
+ "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Babel 8 in CommonJS",
7
7
  "homepage": "https://github.com/putoutjs/babel",
8
8
  "main": "./bundle/babel.cjs",
9
9
  "exports": {
10
- ".": "./bundle/index.cjs"
10
+ ".": "./bundle/index.js"
11
11
  },
12
12
  "types": "./bundle/index.d.ts",
13
13
  "repository": {