mirror of https://github.com/status-im/js-waku.git
ci: fix deploy.js script to use import
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
fa43c0ce05
commit
91fbcb5fb9
|
@ -1,10 +1,11 @@
|
||||||
const { promisify } = require('util')
|
import { promisify } from 'util'
|
||||||
const { publish } = require('gh-pages')
|
import { publish } from 'gh-pages'
|
||||||
const ghpublish = promisify(publish)
|
|
||||||
|
|
||||||
/* fix for "Unhandled promise rejections" */
|
/* fix for "Unhandled promise rejections" */
|
||||||
process.on('unhandledRejection', err => { throw err })
|
process.on('unhandledRejection', err => { throw err })
|
||||||
|
|
||||||
|
const ghpublish = promisify(publish)
|
||||||
|
|
||||||
const Args = process.argv.slice(2)
|
const Args = process.argv.slice(2)
|
||||||
const USE_HTTPS = Args[0] && Args[0].toUpperCase() === 'HTTPS'
|
const USE_HTTPS = Args[0] && Args[0].toUpperCase() === 'HTTPS'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue