mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
const parse = require('../lib').default;
|
|
|
|
(async () => {
|
|
const options = {
|
|
entry: './component.jsx',
|
|
accesser: 'local',
|
|
};
|
|
|
|
const actual = await parse(options);
|
|
console.log(JSON.stringify(actual, null, 2));
|
|
})();
|