mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-28 04:40:32 +00:00
fix: [material-parser]fix bug of main field & remove useless debugger
This commit is contained in:
parent
efd6cc4ea6
commit
8fde0ecd7e
@ -46,7 +46,7 @@ export async function genManifest(
|
||||
package: matScanModel.pkgName,
|
||||
version: matScanModel.pkgVersion,
|
||||
exportName: matParsedModel.componentName,
|
||||
main: matScanModel.entryFilePath,
|
||||
main: matScanModel.mainFilePath,
|
||||
destructuring: false,
|
||||
subName: '',
|
||||
},
|
||||
|
||||
@ -11,12 +11,12 @@ export default async function scan(options: IMaterializeOptions): Promise<IMater
|
||||
sourceType: SourceType.MODULE,
|
||||
entryFilePath: '',
|
||||
entryFileContent: '',
|
||||
mainFilePath: '',
|
||||
};
|
||||
log('options', options);
|
||||
// 入口文件路径
|
||||
let entryFilePath = options.entry;
|
||||
const stats = lstatSync(entryFilePath);
|
||||
debugger;
|
||||
if (!stats.isFile()) {
|
||||
let mainFilePath = '';
|
||||
const pkgJsonPath = join(entryFilePath, 'package.json');
|
||||
@ -39,6 +39,7 @@ export default async function scan(options: IMaterializeOptions): Promise<IMater
|
||||
} else {
|
||||
mainFilePath = './index.js';
|
||||
}
|
||||
model.mainFilePath = mainFilePath;
|
||||
entryFilePath = join(entryFilePath, mainFilePath);
|
||||
}
|
||||
|
||||
|
||||
@ -8,6 +8,8 @@ interface IMaterialScanModel {
|
||||
entryFilePath: string;
|
||||
/** 入口文件内容 */
|
||||
entryFileContent: string;
|
||||
/** main文件相对路径 */
|
||||
mainFilePath: string;
|
||||
/** 当前包名 */
|
||||
pkgName: string;
|
||||
/** 当前包版本 */
|
||||
|
||||
@ -15,7 +15,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Affix',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -77,7 +77,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Animate',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -199,7 +199,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Badge',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -278,7 +278,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Balloon',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -529,7 +529,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Breadcrumb',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -598,7 +598,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Button',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -750,7 +750,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Calendar',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -888,7 +888,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Card',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -976,7 +976,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Cascader',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -1175,7 +1175,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'CascaderSelect',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -1497,7 +1497,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Checkbox',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -1616,7 +1616,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Collapse',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -1691,7 +1691,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'ConfigProvider',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -1771,7 +1771,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'DatePicker',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -2053,7 +2053,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Dialog',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -2276,7 +2276,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Dropdown',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -2407,7 +2407,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Drawer',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -2565,7 +2565,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Form',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -2736,7 +2736,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Icon',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -2799,7 +2799,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Input',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -2952,7 +2952,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Loading',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -3060,7 +3060,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Menu',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -3400,7 +3400,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'MenuButton',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -3534,7 +3534,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Message',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -3667,7 +3667,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Nav',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -3907,7 +3907,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'NumberPicker',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -4116,7 +4116,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Overlay',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -4353,7 +4353,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Pagination',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -4595,7 +4595,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Paragraph',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -4651,7 +4651,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Progress',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -4752,7 +4752,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Radio',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -4859,7 +4859,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Range',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -5070,7 +5070,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Rating',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -5201,7 +5201,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Search',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -5390,7 +5390,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Select',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -5616,7 +5616,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Slider',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -5947,7 +5947,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'SplitButton',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -6144,7 +6144,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Step',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -6237,7 +6237,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Switch',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -6357,7 +6357,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Tab',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -6563,7 +6563,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Tag',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -6689,7 +6689,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'TimePicker',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -6929,7 +6929,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Timeline',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -6980,7 +6980,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Transfer',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -7202,7 +7202,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Tree',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -7554,7 +7554,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'TreeSelect',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -7830,7 +7830,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Typography',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -7852,7 +7852,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Upload',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -8075,7 +8075,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'VirtualList',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -8139,7 +8139,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Divider',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -8199,7 +8199,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Avatar',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -8290,7 +8290,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'ResponsiveGrid',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -8370,7 +8370,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Box',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -8519,7 +8519,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'List',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/fusion-next-component/src/index.js',
|
||||
main: 'src/index.js',
|
||||
package: '@alifd/next',
|
||||
subName: '',
|
||||
version: '1.19.18',
|
||||
@ -8588,7 +8588,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'LowcodePanel',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/6ids3KmALhS3wPXXZBUSuK/node_modules/@ali/lowcode-editor-skeleton/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/lowcode-editor-skeleton',
|
||||
subName: '',
|
||||
version: '0.8.5',
|
||||
@ -8628,7 +8628,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'LowcodeTopIcon',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/6ids3KmALhS3wPXXZBUSuK/node_modules/@ali/lowcode-editor-skeleton/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/lowcode-editor-skeleton',
|
||||
subName: '',
|
||||
version: '0.8.5',
|
||||
@ -8687,7 +8687,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeBlank',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'multiple-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -8752,7 +8752,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeIcon',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'multiple-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -8814,7 +8814,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeImage',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'multiple-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -8841,7 +8841,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeLink',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'multiple-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -8902,7 +8902,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakePlaceholder',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'multiple-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -8949,7 +8949,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeText',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'multiple-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -9015,7 +9015,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Root',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'multiple-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -9055,7 +9055,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeBlank',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/7gv6g1zs9WcSHsUbdoM9rt/node_modules/@ali/aimake-basic/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/aimake-basic',
|
||||
subName: '',
|
||||
version: '0.1.0',
|
||||
@ -9120,7 +9120,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeIcon',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/7gv6g1zs9WcSHsUbdoM9rt/node_modules/@ali/aimake-basic/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/aimake-basic',
|
||||
subName: '',
|
||||
version: '0.1.0',
|
||||
@ -9182,7 +9182,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeImage',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/7gv6g1zs9WcSHsUbdoM9rt/node_modules/@ali/aimake-basic/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/aimake-basic',
|
||||
subName: '',
|
||||
version: '0.1.0',
|
||||
@ -9209,7 +9209,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeLink',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/7gv6g1zs9WcSHsUbdoM9rt/node_modules/@ali/aimake-basic/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/aimake-basic',
|
||||
subName: '',
|
||||
version: '0.1.0',
|
||||
@ -9270,7 +9270,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakePlaceholder',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/7gv6g1zs9WcSHsUbdoM9rt/node_modules/@ali/aimake-basic/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/aimake-basic',
|
||||
subName: '',
|
||||
version: '0.1.0',
|
||||
@ -9317,7 +9317,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'AIMakeText',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/7gv6g1zs9WcSHsUbdoM9rt/node_modules/@ali/aimake-basic/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/aimake-basic',
|
||||
subName: '',
|
||||
version: '0.1.0',
|
||||
@ -9383,7 +9383,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Root',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/node_modules/.temp/7gv6g1zs9WcSHsUbdoM9rt/node_modules/@ali/aimake-basic/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: '@ali/aimake-basic',
|
||||
subName: '',
|
||||
version: '0.1.0',
|
||||
@ -9423,7 +9423,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'Demo',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/single-exported-component/es/index.js',
|
||||
main: 'es/index.js',
|
||||
package: 'single-exported-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
@ -9610,7 +9610,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
npm: {
|
||||
destructuring: false,
|
||||
exportName: 'App',
|
||||
main: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/ts-component/src/index.tsx',
|
||||
main: 'src/index.tsx',
|
||||
package: 'ts-component',
|
||||
subName: '',
|
||||
version: '1.0.0',
|
||||
|
||||
Binary file not shown.
@ -20,6 +20,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
export { AIMakeBlank, AIMakeIcon, AIMakeImage, AIMakeLink, AIMakePlaceholder, AIMakeText, Root };␊
|
||||
`,
|
||||
entryFilePath: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/multiple-exported-component/es/index.js',
|
||||
mainFilePath: 'es/index.js',
|
||||
pkgName: 'multiple-exported-component',
|
||||
pkgVersion: '1.0.0',
|
||||
sourceType: 'module',
|
||||
@ -116,6 +117,7 @@ Generated by [AVA](https://avajs.dev).
|
||||
};␊
|
||||
export default Demo;`,
|
||||
entryFilePath: '/Users/gengyang/code/frontend/low-code/ali-lowcode-engine-v0.8/packages/material-parser/test/fixtures/single-exported-component/es/index.js',
|
||||
mainFilePath: 'es/index.js',
|
||||
pkgName: 'single-exported-component',
|
||||
pkgVersion: '1.0.0',
|
||||
sourceType: 'module',
|
||||
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user