mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
feat(cli): 支持配置temp文件夹,默认.tmagic
This commit is contained in:
parent
55661ee2e7
commit
624da4c29a
@ -7,4 +7,5 @@ cli({
|
||||
packages: {},
|
||||
componentFileAffix: '',
|
||||
cleanTemp: true,
|
||||
temp: '.tmagic',
|
||||
});
|
||||
|
@ -19,7 +19,7 @@ export default class Core {
|
||||
};
|
||||
|
||||
public dir = {
|
||||
temp: () => path.resolve(this.options.source, 'src/.tmagic'),
|
||||
temp: () => path.resolve(this.options.source, this.options.temp),
|
||||
};
|
||||
|
||||
constructor(options: UserConfig) {
|
||||
|
@ -33,7 +33,7 @@ export interface EntryFile {
|
||||
|
||||
export interface UserConfig {
|
||||
source: string;
|
||||
scripts: Record<string, string>;
|
||||
temp: string;
|
||||
packages: Record<string, any>;
|
||||
componentFileAffix: string;
|
||||
cleanTemp: boolean;
|
||||
|
Loading…
x
Reference in New Issue
Block a user