webstudio 0.167.0 → 0.173.0

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
@@ -35,7 +35,7 @@ To get started with the Webstudio CLI:
35
35
  1. Download and install the CLI using the following command:
36
36
 
37
37
  ```bash
38
- npm install -g webstudio
38
+ npm install -g webstudio@latest
39
39
  ```
40
40
 
41
41
  1. Confirm the installation by checking the CLI version:
package/bin.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { main } from "./lib/cli.js";
3
+ import { main } from "#cli";
4
4
 
5
5
  await main();