Skip to content

Commit

Permalink
Merge pull request #761 from HubSpot/fix-relative-import
Browse files Browse the repository at this point in the history
removing import from cli package
  • Loading branch information
brandenrodgers authored Oct 31, 2022
2 parents 642e848 + b41c843 commit 0774306
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/cli-lib/projectsWatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const {
queueBuild,
} = require('./api/dfs');
const { ERROR_TYPES } = require('./lib/constants');
const { EXIT_CODES } = require('../cli/lib/enums/exitCodes');

const i18nKey = 'cli.commands.project.subcommands.watch';

Expand Down Expand Up @@ -64,7 +63,7 @@ const debounceQueueBuild = (accountId, projectName) => {
err.error.subCategory === ERROR_TYPES.MISSING_PROJECT_PROVISION
) {
logger.log(i18n(`${i18nKey}.logs.watchCancelledFromUi`));
process.exit(EXIT_CODES.SUCCESS);
process.exit(0);
} else {
logApiErrorInstance(
err,
Expand Down

0 comments on commit 0774306

Please sign in to comment.