1 Star 0 Fork 55

dongjiqiang/vue-devtools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sign-firefox.js 898 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* eslint-disable no-console */
const path = require('path')
const fs = require('fs')
const execa = require('execa')
const credFile = path.resolve(__dirname, '.amo.env.json')
if (!fs.existsSync(credFile)) {
fs.writeFileSync(credFile, JSON.stringify({
apiKey: '',
apiSecret: '',
}, null, 2), { encoding: 'utf8' })
console.log('Please provide Mozilla API credentials in .amo.env.json\nhttps://addons.mozilla.org/developers/addon/api/key/')
process.exit(1)
}
const creds = JSON.parse(fs.readFileSync(credFile, {
encoding: 'utf8',
}))
const child = execa('web-ext', [
'sign',
'--api-key', creds.apiKey,
'--api-secret', creds.apiSecret,
'-s', 'packages/shell-chrome',
'-a', 'dist',
'-i', 'src',
'--id', '{c087fa6e-b59f-475d-b08d-f03fef34fa7f}',
], {
shell: true,
stdio: ['inherit', 'inherit', 'inherit'],
})
child.on('exit', (code) => {
process.exit(code)
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/dongjiqiang/vue-devtools.git
git@gitee.com:dongjiqiang/vue-devtools.git
dongjiqiang
vue-devtools
vue-devtools
main

搜索帮助