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