@hubspot/cli 7.4.5-experimental.0 → 7.4.6-experimental.0

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.
@@ -141,10 +141,10 @@ async function ensureProjectExists(accountId, projectName, { forceCreate = false
141
141
  }
142
142
  catch (err) {
143
143
  // @ts-expect-error
144
- console.log('statusCode', err.status);
144
+ logger_1.logger.log('statusCode', err.status);
145
145
  const isError = (0, index_1.isSpecifiedError)(err, { statusCode: 404 });
146
- console.log('is404', isError);
147
- console.log('isHubspotHttpError', (0, index_1.isHubSpotHttpError)(err));
146
+ logger_1.logger.log('is404', isError);
147
+ logger_1.logger.log('isHubspotHttpError', (0, index_1.isHubSpotHttpError)(err));
148
148
  if (isError) {
149
149
  let shouldCreateProject = forceCreate;
150
150
  if (allowCreate && !shouldCreateProject) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/cli",
3
- "version": "7.4.5-experimental.0",
3
+ "version": "7.4.6-experimental.0",
4
4
  "description": "The official CLI for developing on HubSpot",
5
5
  "license": "Apache-2.0",
6
6
  "repository": "https://github.com/HubSpot/hubspot-cli",