We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d692d7 commit 5c0102aCopy full SHA for 5c0102a
src/cli.js
@@ -1,6 +1,6 @@
1
'use strict'
2
3
-const { common, hostInfo, warning } = require('./common')
+const { info, hostInfo, warning } = require('./common')
4
const fs = require('fs-extra')
5
const { initializeProxy } = require('@electron/get')
6
const packager = require('..')
@@ -127,9 +127,9 @@ module.exports = {
127
try {
128
const appPaths = await packager(args)
129
if (appPaths.length > 1) {
130
- common.info(`Wrote new apps to:\n${appPaths.join('\n')}`)
+ info(`Wrote new apps to:\n${appPaths.join('\n')}`)
131
} else if (appPaths.length === 1) {
132
- common.info('Wrote new app to', appPaths[0])
+ info('Wrote new app to', appPaths[0])
133
}
134
} catch (err) {
135
if (err.message) {
0 commit comments