@launchframe/cli 1.0.0-beta.1 → 1.0.0-beta.2

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": "@launchframe/cli",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "Production-ready B2B SaaS boilerplate with subscriptions, credits, and multi-tenancy",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -172,6 +172,16 @@ async function buildFullAppImages(projectRoot, projectName, githubOrg, envFilePa
172
172
  websiteBuildArgs
173
173
  );
174
174
  }
175
+
176
+ // Build docs (optional service - VitePress documentation)
177
+ if (installedServices.includes('docs')) {
178
+ await buildAndPushImage(
179
+ 'docs',
180
+ path.join(projectRoot, 'docs'),
181
+ registry,
182
+ projectName
183
+ );
184
+ }
175
185
  }
176
186
 
177
187
  /**