@rglabs/butterfly 2.0.1 → 2.0.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/README.md CHANGED
@@ -21,8 +21,8 @@ butterfly setup
21
21
  # 2. Download all resources
22
22
  butterfly download
23
23
 
24
- # 3. Start watching for changes
25
- butterfly start
24
+ # 3. Upload changes
25
+ butterfly upload <path>
26
26
  ```
27
27
 
28
28
  ## Commands
@@ -84,26 +84,6 @@ butterfly download --cleanup
84
84
 
85
85
  ---
86
86
 
87
- ### `butterfly start`
88
-
89
- Watch for local file changes and sync them to the Butterfly platform in real-time.
90
-
91
- ```bash
92
- butterfly start
93
-
94
- # Custom directory
95
- butterfly start -o ./my-resources
96
- ```
97
-
98
- Supported file types for sync:
99
- - Object specs (`spec.json`, `code.js`, `style.css`, `*.bfy`, `*.yaml`)
100
- - Reports (`report.json`, `query.json`, `*.bfy`, `*.js`)
101
- - Workflows (`workflow.json`, `version.json`, `node.json`, `code.bfy`, `params.yaml`, `connections.json`)
102
- - AI Tasks (`task.json`, `prompt.twig`, `*.twig`)
103
- - And more...
104
-
105
- ---
106
-
107
87
  ### `butterfly upload`
108
88
 
109
89
  Upload specific files or folders to the platform.
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ config();
16
16
  program
17
17
  .name('butterfly-cli')
18
18
  .description('CLI tool to download resources from the Butterfly platform')
19
- .version('2.0.1');
19
+ .version('2.0.2');
20
20
  program
21
21
  .command('setup')
22
22
  .description('Configure authentication for the Butterfly platform')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rglabs/butterfly",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "CLI tool to download resources from the Butterfly platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",