@tarojs/helper 4.0.0-beta.65 → 4.0.0-beta.67
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/dist/utils.d.ts +1 -2
- package/package.json +1 -1
package/dist/utils.d.ts
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import * as babel from '@babel/core';
|
|
3
3
|
import babelGenerator from '@babel/generator';
|
|
4
4
|
import * as babelParser from '@babel/parser';
|
|
5
|
-
import * as t from '@babel/types';
|
|
6
5
|
import * as fs from 'fs-extra';
|
|
7
6
|
import { processTypeEnum } from './constants';
|
|
8
7
|
import type TResolve from 'resolve';
|
|
@@ -70,7 +69,7 @@ export declare function readConfig<T extends IReadConfigOptions>(configPath: str
|
|
|
70
69
|
export declare function removePathPrefix(filePath?: string): string;
|
|
71
70
|
export { fs };
|
|
72
71
|
export declare const babelKit: {
|
|
73
|
-
types: typeof
|
|
72
|
+
types: typeof babel.types;
|
|
74
73
|
parse: typeof babelParser.parse;
|
|
75
74
|
generate: typeof babelGenerator;
|
|
76
75
|
traverse: {
|