@putout/babel 1.5.2 → 1.5.3
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/bundle/index.d.ts +0 -6
- package/bundle/index.js +4 -4
- package/package.json +9 -3
package/bundle/index.d.ts
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
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
|
-
|
|
7
1
|
// NOTE: This file is autogenerated. Do not modify.
|
|
8
2
|
// See packages/babel-types/scripts/generators/typescript-legacy.js for script used.
|
|
9
3
|
|
package/bundle/index.js
CHANGED
|
@@ -3468,9 +3468,9 @@ var require_globals2 = __commonJS({
|
|
|
3468
3468
|
}
|
|
3469
3469
|
});
|
|
3470
3470
|
|
|
3471
|
-
//
|
|
3472
|
-
var
|
|
3473
|
-
__export(
|
|
3471
|
+
// lib/index.mjs
|
|
3472
|
+
var lib_exports2 = {};
|
|
3473
|
+
__export(lib_exports2, {
|
|
3474
3474
|
codeFrameColumns: () => codeFrameColumns,
|
|
3475
3475
|
generate: () => generate,
|
|
3476
3476
|
parse: () => parse,
|
|
@@ -3480,7 +3480,7 @@ __export(babel_exports, {
|
|
|
3480
3480
|
traverse: () => traverse3,
|
|
3481
3481
|
types: () => lib_exports
|
|
3482
3482
|
});
|
|
3483
|
-
module.exports = __toCommonJS(
|
|
3483
|
+
module.exports = __toCommonJS(lib_exports2);
|
|
3484
3484
|
|
|
3485
3485
|
// node_modules/@babel/types/lib/index.js
|
|
3486
3486
|
var lib_exports = {};
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putout/babel",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
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
|
-
"main": "./bundle/
|
|
8
|
+
"main": "./bundle/index.js",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": "./bundle/index.js"
|
|
11
11
|
},
|
|
@@ -29,7 +29,12 @@
|
|
|
29
29
|
"coverage": "madrun coverage",
|
|
30
30
|
"report": "madrun report",
|
|
31
31
|
"wisdom": "madrun wisdom",
|
|
32
|
+
"build-old": "madrun build-old",
|
|
33
|
+
"clean": "madrun clean",
|
|
32
34
|
"build": "madrun build",
|
|
35
|
+
"build:js": "madrun build:js",
|
|
36
|
+
"build:types": "madrun build:types",
|
|
37
|
+
"build:fix": "madrun build:fix",
|
|
33
38
|
"copy": "madrun copy"
|
|
34
39
|
},
|
|
35
40
|
"dependencies": {},
|
|
@@ -64,7 +69,8 @@
|
|
|
64
69
|
"rollup": "^3.15.0",
|
|
65
70
|
"rollup-plugin-node-externals": "^6.1.1",
|
|
66
71
|
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
67
|
-
"tsup": "^7.2.0"
|
|
72
|
+
"tsup": "^7.2.0",
|
|
73
|
+
"typescript": "^5.2.2"
|
|
68
74
|
},
|
|
69
75
|
"license": "MIT",
|
|
70
76
|
"engines": {
|