@pitcher/cli
Advanced tools
Comparing version 0.2.0 to 0.3.0
@@ -24,3 +24,3 @@ import chalk from 'chalk' | ||
throw Error( | ||
"app.json doesn't exist.\nThis command will install the app described in the app.json.\nRun `pitcher app init` first.\n", | ||
"app.json doesn't exist.\nThis command will install the app described in the app.json.\nRun `pit app init` first.\n", | ||
e | ||
@@ -27,0 +27,0 @@ ) |
@@ -22,3 +22,3 @@ import archiver from 'archiver' | ||
if (!appJsonExists) throw Error("app.json doesn't exist. Run `pitcher app init` first.") | ||
if (!appJsonExists) throw Error("app.json doesn't exist. Run `pit app init` first.") | ||
@@ -25,0 +25,0 @@ const distFolderExists = await existsSync(`${process.cwd()}/dist/`) |
{ | ||
"name": "@pitcher/cli", | ||
"version": "0.2.0", | ||
"version": "0.3.0", | ||
"description": "A CLI for PITCHER services", | ||
@@ -10,3 +10,3 @@ "main": "pitcher.js", | ||
"bin": { | ||
"pitcher": "pitcher.js" | ||
"pit": "pitcher.js" | ||
}, | ||
@@ -13,0 +13,0 @@ "dependencies": { |
@@ -12,3 +12,3 @@ #!/usr/bin/env node | ||
const program = new Command() | ||
program.name('pitcher').description('A CLI for PITCHER services').version(info.version) | ||
program.name('pit').alias('pitcher').description('A CLI for PITCHER services').version(info.version) | ||
@@ -15,0 +15,0 @@ program.addCommand(auth) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24129