@hubspot/cli 7.3.0-experimental.1 → 7.3.0-experimental.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +1 -1
- package/commands/account/info.js +1 -0
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -140,7 +140,7 @@ const updateCLIVersion = async () => {
|
|
|
140
140
|
// Update if the current version is not the latest version.
|
|
141
141
|
// Don't auto-update if the current version is a pre-release
|
|
142
142
|
// or if this would be a major version update
|
|
143
|
-
if (updateInfo.current.includes('-') &&
|
|
143
|
+
if (!updateInfo.current.includes('-') &&
|
|
144
144
|
!['major', 'latest'].includes(updateInfo.type)) {
|
|
145
145
|
SpinniesManager.init({
|
|
146
146
|
succeedColor: 'white',
|
package/commands/account/info.js
CHANGED
|
@@ -28,6 +28,7 @@ async function handler(args) {
|
|
|
28
28
|
else {
|
|
29
29
|
logger_1.logger.log((0, lang_1.i18n)(`${i18nKey}.errors.notUsingPersonalAccessKey`));
|
|
30
30
|
}
|
|
31
|
+
logger_1.logger.debug('Some debug log that only shows on this version of the CLI');
|
|
31
32
|
}
|
|
32
33
|
function accountInfoBuilder(yargs) {
|
|
33
34
|
yargs.positional('account', {
|
package/package.json
CHANGED