|
@@ -14,6 +14,7 @@ let Propagand = resolve(CWD, './workspace/AntDesignOfVue_Propagand')
|
|
|
let QualityInspection = resolve(CWD, './workspace/AntDesignOfVue_QualityInspection')
|
|
|
// let ScheduleShift = resolve(CWD, './workspace/AntDesignOfVue_ScheduleShift')
|
|
|
let Supply = resolve(CWD, './workspace/AntDesignOfVue_Supply')
|
|
|
+let Workhandover = resolve(CWD, './workspace/AntDesignOfVue_Workhandover')
|
|
|
let Writ = resolve(CWD, './workspace/AntDesignOfVue_Writ')
|
|
|
|
|
|
const run = (bin, args, opts = {}) => execa(bin, args, { stdio: 'inherit', ...opts })
|
|
@@ -79,6 +80,11 @@ async function create() {
|
|
|
key: '10',
|
|
|
name: '教育宣讲',
|
|
|
value: 'Propagand'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '11',
|
|
|
+ name: '交班报告',
|
|
|
+ value: 'Workhandover'
|
|
|
}
|
|
|
// {
|
|
|
// key: '7',
|
|
@@ -126,6 +132,9 @@ async function create() {
|
|
|
case 'Propagand':
|
|
|
run('yarn', ['build'], { cwd: Propagand })
|
|
|
break
|
|
|
+ case 'Workhandover':
|
|
|
+ run('yarn', ['build'], { cwd: Workhandover })
|
|
|
+ break
|
|
|
}
|
|
|
}
|
|
|
|