-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: strf-9257 Added check if theme version exists (#745)
- Loading branch information
Showing
4 changed files
with
380 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/usr/bin/env node | ||
|
||
require('colors'); | ||
const release = require('../lib/release/release'); | ||
const StencilRelease = require('../lib/release/release'); | ||
const { PACKAGE_INFO } = require('../constants'); | ||
const program = require('../lib/commander'); | ||
const { checkNodeVersion } = require('../lib/cliCommon'); | ||
const { printCliResultErrorAndExit } = require('../lib/cliCommon'); | ||
|
||
program.version(PACKAGE_INFO.version).parse(process.argv); | ||
|
||
checkNodeVersion(); | ||
|
||
release(); | ||
new StencilRelease().run().catch(printCliResultErrorAndExit); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.