UNPKG

369 BJavaScriptView Raw
1'use strict'
2
3// List of build plugins events
4const EVENTS = [
5 // Before build command
6 'onPreBuild',
7 // After build command, before Functions bundling
8 'onBuild',
9 // After Functions bundling
10 'onPostBuild',
11 // After build success
12 'onSuccess',
13 // After build error
14 'onError',
15 // After build error or success
16 'onEnd',
17]
18
19module.exports = { EVENTS }