@v5x/cli 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2128,7 +2128,7 @@ var require_commander = __commonJS((exports) => {
|
|
|
2128
2128
|
// package.json
|
|
2129
2129
|
var package_default = {
|
|
2130
2130
|
name: "@v5x/cli",
|
|
2131
|
-
version: "0.0.
|
|
2131
|
+
version: "0.0.16",
|
|
2132
2132
|
description: "Command line interface for v5x.",
|
|
2133
2133
|
license: "MIT",
|
|
2134
2134
|
type: "module",
|
|
@@ -2213,7 +2213,7 @@ async function detectProgramType(path) {
|
|
|
2213
2213
|
}
|
|
2214
2214
|
return "unknown";
|
|
2215
2215
|
}
|
|
2216
|
-
var build = new Command("build").description("build a program for the vex v5 brain").argument("[path]", "path to the program", process.cwd()).option("-t, --type <type>", "type of the program").action(async (path, options) => {
|
|
2216
|
+
var build = new Command("build").alias("b").description("build a program for the vex v5 brain").argument("[path]", "path to the program", process.cwd()).option("-t, --type <type>", "type of the program").action(async (path, options) => {
|
|
2217
2217
|
if (!await exists(path)) {
|
|
2218
2218
|
console.error(`path does not exist: ${path}`);
|
|
2219
2219
|
return;
|