@stacksjs/ts-cloud 0.5.20 → 0.5.22

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 CHANGED
@@ -84220,7 +84220,7 @@ function buildNginxVhostScript(options) {
84220
84220
  const available = `/etc/nginx/sites-available/${options.siteName}`;
84221
84221
  const enabled2 = `/etc/nginx/sites-enabled/${options.siteName}`;
84222
84222
  const vhost = buildNginxVhost(options);
84223
- const out = [];
84223
+ const out = [...buildNginxServiceScript()];
84224
84224
  if (options.auth) {
84225
84225
  const file = htpasswdPath(options.siteName);
84226
84226
  const sq = (v) => v.split("'").join("'\\''");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/ts-cloud",
3
3
  "type": "module",
4
- "version": "0.5.20",
4
+ "version": "0.5.22",
5
5
  "description": "A lightweight, performant infrastructure-as-code library and CLI for deploying both server-based (EC2) and serverless applications.",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
7
7
  "license": "MIT",
@@ -89,8 +89,8 @@
89
89
  "test": "bun test"
90
90
  },
91
91
  "dependencies": {
92
- "@ts-cloud/aws-types": "0.5.20",
93
- "@ts-cloud/core": "0.5.20",
92
+ "@ts-cloud/aws-types": "0.5.22",
93
+ "@ts-cloud/core": "0.5.22",
94
94
  "@stacksjs/ts-xml": "^0.1.0"
95
95
  },
96
96
  "devDependencies": {