mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
19 lines
305 B
JavaScript
Executable File
19 lines
305 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const { cli } = require('../lib');
|
|
|
|
cli({
|
|
source: process.cwd(),
|
|
packages: {},
|
|
componentFileAffix: '',
|
|
cleanTemp: true,
|
|
temp: '.tmagic',
|
|
useTs: true,
|
|
dynamicImport: false,
|
|
npmConfig: {
|
|
client: 'npm',
|
|
autoInstall: true,
|
|
keepPackageJsonClean: true,
|
|
},
|
|
});
|