Skip to content

Commit

Permalink
Remove notify for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jsines committed Oct 12, 2023
1 parent dc55a9f commit 498111f
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions packages/cli/commands/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const { i18n } = require('../lib/lang');
const { logger } = require('@hubspot/cli-lib/logger');
const { getAccountId } = require('../lib/commonOpts');
const { EXIT_CODES } = require('../lib/enums/exitCodes');
//const { loadAndValidateOptions } = require('../lib/validation');
const { getCwd } = require('@hubspot/cli-lib/path');
const { preview } = require('@hubspot/cli-lib/lib/preview');
const { getUploadableFileList } = require('../lib/upload');
Expand All @@ -16,8 +15,6 @@ exports.command = 'preview <src> <dest>';
exports.describe = i18n(`${i18nKey}.describe`);

exports.handler = async options => {
//await loadAndValidateOptions(options);

const { src, dest, notify, skipInitial } = options;

const accountId = getAccountId(options);
Expand Down Expand Up @@ -45,12 +42,6 @@ exports.builder = yargs => {
describe: i18n(`${i18nKey}.positionals.dest.describe`),
type: 'string',
});
yargs.option('notify', {
alias: 'n',
describe: i18n(`${i18nKey}.options.notify.describe`),
type: 'string',
requiresArg: true,
});
yargs.option('skipInitial', {
alias: 'skip',
describe: i18n(`${i18nKey}.options.skipInitial.describe`),
Expand Down

0 comments on commit 498111f

Please sign in to comment.