|
1 | 1 | import type { Logger } from 'log4js';
|
2 | 2 | import * as readPkgUp from 'read-pkg-up';
|
3 | 3 | import { satisfies } from 'semver';
|
4 |
| -import { SyncHook } from 'tapable'; |
| 4 | +import { SyncHook, AsyncSeriesHook } from 'tapable'; |
5 | 5 | import { loadConfigFromFile, ResolvedConfig } from '../exec/config';
|
6 | 6 | import logger from '../utils/logger';
|
7 | 7 |
|
8 | 8 | export interface CommandHooks {
|
9 | 9 | beforeInit: SyncHook<never>;
|
| 10 | + beforeInitAsync: AsyncSeriesHook<never>; |
10 | 11 | init: SyncHook<never>;
|
| 12 | + initAsync: AsyncSeriesHook<never>; |
11 | 13 | afterInit: SyncHook<never>;
|
| 14 | + afterInitAsync: AsyncSeriesHook<never>; |
12 | 15 | beforeRun: SyncHook<never>;
|
| 16 | + beforeRunAsync: AsyncSeriesHook<never>; |
13 | 17 | run: SyncHook<never>;
|
| 18 | + runAsync: AsyncSeriesHook<never>; |
14 | 19 | afterRun: SyncHook<never>;
|
| 20 | + afterRunAsync: AsyncSeriesHook<never>; |
15 | 21 | watch: SyncHook<never>;
|
| 22 | + watchAsync: AsyncSeriesHook<never>; |
16 | 23 | release: SyncHook<string | any>;
|
| 24 | + releaseAsync: AsyncSeriesHook<string | any>; |
17 | 25 | }
|
18 | 26 |
|
19 | 27 | export type HookFun = (hook: CommandHooks) => void;
|
@@ -69,37 +77,52 @@ export default class Command {
|
69 | 77 | afterRun: new SyncHook(),
|
70 | 78 | watch: new SyncHook(),
|
71 | 79 | release: new SyncHook(['params']),
|
| 80 | + |
| 81 | + beforeInitAsync: new AsyncSeriesHook(), |
| 82 | + initAsync: new AsyncSeriesHook(), |
| 83 | + afterInitAsync: new AsyncSeriesHook(), |
| 84 | + beforeRunAsync: new AsyncSeriesHook(), |
| 85 | + runAsync: new AsyncSeriesHook(), |
| 86 | + afterRunAsync: new AsyncSeriesHook(), |
| 87 | + watchAsync: new AsyncSeriesHook(), |
| 88 | + releaseAsync: new AsyncSeriesHook(['releaseInfo']), |
72 | 89 | };
|
73 | 90 |
|
74 | 91 | this.logger = logger;
|
75 | 92 | }
|
76 | 93 |
|
77 | 94 | protected async beforeInit() {
|
78 | 95 | this.hooks.beforeInit.call();
|
| 96 | + await this.toPromise(this.hooks.beforeInitAsync); |
79 | 97 | }
|
80 | 98 |
|
81 | 99 | protected async init() {
|
82 | 100 | this.hooks.init.call();
|
| 101 | + await this.toPromise(this.hooks.initAsync); |
83 | 102 | this.logger.error(`init methods must be implement`);
|
84 | 103 | process.exit(1);
|
85 | 104 | }
|
86 | 105 |
|
87 | 106 | protected async afterInit() {
|
88 | 107 | this.hooks.afterInit.call();
|
| 108 | + await this.toPromise(this.hooks.afterInitAsync); |
89 | 109 | }
|
90 | 110 |
|
91 | 111 | protected async beforeRun() {
|
92 | 112 | this.hooks.beforeRun.call();
|
| 113 | + await this.toPromise(this.hooks.beforeRunAsync); |
93 | 114 | }
|
94 | 115 |
|
95 | 116 | protected async run() {
|
96 | 117 | this.hooks.run.call();
|
| 118 | + await this.toPromise(this.hooks.runAsync); |
97 | 119 | this.logger.error(`run methods must be implement`);
|
98 | 120 | process.exit(1);
|
99 | 121 | }
|
100 | 122 |
|
101 | 123 | protected async afterRun() {
|
102 | 124 | this.hooks.afterRun.call();
|
| 125 | + await this.toPromise(this.hooks.afterRunAsync); |
103 | 126 | }
|
104 | 127 |
|
105 | 128 | private async getConfig() {
|
@@ -137,4 +160,14 @@ export default class Command {
|
137 | 160 | }
|
138 | 161 | }
|
139 | 162 | }
|
| 163 | + |
| 164 | + toPromise(hook: AsyncSeriesHook<any>, arg?: any) { |
| 165 | + return new Promise<void>(resolve => { |
| 166 | + if (arg) { |
| 167 | + hook.callAsync(arg, resolve); |
| 168 | + } else { |
| 169 | + hook.callAsync(resolve); |
| 170 | + } |
| 171 | + }); |
| 172 | + } |
140 | 173 | }
|
0 commit comments