@archlast/cli 0.1.3 → 0.1.4
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/README.md +1 -1
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -320991,7 +320991,7 @@ import { createRequire as createRequire2 } from "module";
|
|
|
320991
320991
|
var DEFAULTS = {
|
|
320992
320992
|
docker: {
|
|
320993
320993
|
image: "algochad/archlast-server",
|
|
320994
|
-
tag: "
|
|
320994
|
+
tag: "latest",
|
|
320995
320995
|
containerName: "archlast-server",
|
|
320996
320996
|
volumeName: "archlast-data"
|
|
320997
320997
|
},
|
|
@@ -322320,7 +322320,7 @@ async function configCommand(options) {
|
|
|
322320
322320
|
|
|
322321
322321
|
// src/cli.ts
|
|
322322
322322
|
var program2 = new Command;
|
|
322323
|
-
program2.name("archlast").description("Archlast CLI for development and deployment").version("0.1.
|
|
322323
|
+
program2.name("archlast").description("Archlast CLI for development and deployment").version("0.1.4");
|
|
322324
322324
|
program2.command("build").description("Generate types without deploying").option("--path <path>", "Path to archlast folder", ".").action(buildCommand);
|
|
322325
322325
|
program2.command("dev").description("Start development mode with file watching").option("-p, --port <port>", "Server port", "3001").option("--path <path>", "Path to archlast folder", ".").option("--server <url>", "Server URL for code upload", "http://localhost:4000").option("--max-poll <number>", "Maximum server polling retries", "30").action(devCommand);
|
|
322326
322326
|
program2.command("deploy").description("Deploy to production").option("--path <path>", "Path to archlast folder", ".").option("--server <url>", "Server URL for code upload", "http://localhost:4000").option("--max-poll <number>", "Maximum server polling retries", "30").action(deployCommand);
|