@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 CHANGED
@@ -62,7 +62,7 @@ Example `archlast.config.js`:
62
62
  export default {
63
63
  docker: {
64
64
  image: "algochad/archlast-server",
65
- tag: "0.1.0",
65
+ tag: "latest",
66
66
  containerName: "archlast-server",
67
67
  volumeName: "archlast-data",
68
68
  },
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: "0.1.0",
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.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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@archlast/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Archlast CLI for development and deployment",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",