Skip to content

Commit

Permalink
fix: rebanding to AEM
Browse files Browse the repository at this point in the history
BREAKING CHANGE: 'hlx' is deprecated. use 'aem'
  • Loading branch information
tripodsan committed Sep 29, 2023
1 parent c3c7aa8 commit ada179a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .releaserc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ module.exports = {
}],
["@semantic-release/github", {}]
],
branches: ['main'],
branches: ['main', '14.x'],
};
11 changes: 6 additions & 5 deletions src/import.cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,12 @@ export default class ImportCommand extends AbstractServerCommand {
.withCwd(this.directory)
.withLogger(this._logger)
.withKill(this._kill);
this.log.info(chalk`{yellow ___ ______ ___ ____ __ }`);
this.log.info(chalk`{yellow / _ | / __/ |/ / / _/_ _ ___ ___ ____/ /____ ____}`);
this.log.info(chalk`{yellow / __ |/ _// /|_/ / _/ // ' \\/ _ \\/ _ \\/ __/ __/ -_) __/}`);
this.log.info(chalk`{yellow /_/ |_/___/_/ /_/ /___/_/_/_/ .__/\\___/_/ \\__/\\__/_/}`);
this.log.info(chalk`{yellow /_/ v${pkgJson.version}}`);
this.log.info(chalk`{yellow ___ ________ ___ __}`);
this.log.info(chalk`{yellow / | / ____/ |/ / (_)___ ___ ____ ____ _____/ /____ _____}`);
this.log.info(chalk`{yellow / /| | / __/ / /|_/ / / / __ \`__ \\/ __ \\/ __ \\/ ___/ __/ _ \\/ ___/}`);
this.log.info(chalk`{yellow / ___ |/ /___/ / / / / / / / / / / /_/ / /_/ / / / /_/ __/ /}`);
this.log.info(chalk`{yellow /_/ |_/_____/_/ /_/ /_/_/ /_/ /_/ .___/\\____/_/ \\__/\\___/_/}`);
this.log.info(chalk`{yellow /_/ v${pkgJson.version}}`);
this.log.info('');

await this.initSeverOptions();
Expand Down
9 changes: 5 additions & 4 deletions src/up.cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ export default class UpCommand extends AbstractServerCommand {
.withLogger(this._logger)
.withKill(this._kill)
.withPrintIndex(this._printIndex);
this.log.info(chalk`{yellow ___ ______ ___ _____ __ __ v${pkgJson.version}}`);
this.log.info(chalk`{yellow / _ | / __/ |/ / / __(_)_ _ __ __/ /__ _/ /____ ____}`);
this.log.info(chalk`{yellow / __ |/ _// /|_/ / _\\ \\/ / ' \\/ // / / _ \`/ __/ _ \\/ __/}`);
this.log.info(chalk`{yellow /_/ |_/___/_/ /_/ /___/_/_/_/_/\\_,_/_/\\_,_/\\__/\\___/_/}`);
this.log.info(chalk`{yellow ___ ________ ___ __ __ v${pkgJson.version}}`);
this.log.info(chalk`{yellow / | / ____/ |/ / _____(_)___ ___ __ __/ /___ _/ /_____ _____}`);
this.log.info(chalk`{yellow / /| | / __/ / /|_/ / / ___/ / __ \`__ \\/ / / / / __ \`/ __/ __ \\/ ___/}`);
this.log.info(chalk`{yellow / ___ |/ /___/ / / / (__ ) / / / / / / /_/ / / /_/ / /_/ /_/ / /}`);
this.log.info(chalk`{yellow /_/ |_/_____/_/ /_/ /____/_/_/ /_/ /_/\\__,_/_/\\__,_/\\__/\\____/_/}`);
this.log.info('');

const ref = await GitUtils.getBranch(this.directory);
Expand Down

0 comments on commit ada179a

Please sign in to comment.