main
js 9 lines 133 Bytes
Raw
1 #!/usr/bin/env node
2
3 'use strict';
4
5 const deploy = require('../deploy');
6
7 const main = async () => await deploy('firefox');
8
9 main();