@orcapt/cli 1.0.0 → 1.0.1

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": "@orcapt/cli",
3
- "version": "v1.0.0",
3
+ "version": "v1.0.1",
4
4
  "description": "CLI tool for managing Orca projects - Quick setup and deployment",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -180,7 +180,7 @@ async function uiStart(options) {
180
180
 
181
181
  if (result.status === 0) {
182
182
  const globalModulesPath = result.stdout.trim();
183
- uiDistPath = path.join(globalModulesPath, '@orca', 'ui', 'dist');
183
+ uiDistPath = path.join(globalModulesPath, '@orcapt', 'ui', 'dist');
184
184
 
185
185
  if (!fs.existsSync(uiDistPath)) {
186
186
  console.log(chalk.red(`\n✗ @orcapt/ui is installed but dist folder not found at: ${uiDistPath}`));