@webhikers/cli 1.1.13 → 1.1.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webhikers/cli",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "description": "CLI for creating and deploying webhikers projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -164,9 +164,9 @@ export async function createCommand(name) {
164
164
 
165
165
  console.log(c.dim(` Setting domain...`));
166
166
  await coolifyApi(config, "PATCH", `/applications/${appUuid}`, {
167
- docker_compose_domains: JSON.stringify([
167
+ docker_compose_domains: [
168
168
  { name: "app", domain: `https://${domain}` },
169
- ]),
169
+ ],
170
170
  });
171
171
 
172
172
  console.log(c.dim(" Setting environment variables..."));