@fnet/cli 0.111.1 → 0.111.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": "@fnet/cli",
3
- "version": "0.111.1",
3
+ "version": "0.111.2",
4
4
  "files": [
5
5
  "dist",
6
6
  "template"
@@ -20,7 +20,7 @@ Flownet is a revolutionary development framework that isolates non-functional co
20
20
 
21
21
  ### Key Features
22
22
 
23
- - **Language Agnostic**: Support for multiple programming languages (JavaScript, Python, Go, Rust, C) in the same project
23
+ - **Language Agnostic**: Support for multiple programming languages (JavaScript, Python) in the same project
24
24
  - **Runtime Flexibility**: Choose the best runtime for each task (Node.js, Python, Bun)
25
25
  - **Unified Interface**: Consistent commands across different project types
26
26
  - **Tag-Based Configuration**: Powerful conditional configuration with `--ftag` parameter
@@ -101,16 +101,13 @@ Flownet provides three main CLI tools:
101
101
 
102
102
  ## Multi-Language Support
103
103
 
104
- Flownet is evolving to support multiple programming languages simultaneously within the same project:
104
+ Flownet supports multiple programming languages simultaneously within the same project:
105
105
 
106
106
  ```text
107
107
  my-project/
108
108
  ├── src/
109
- │ ├── index.js # JavaScript implementation
110
- ├── index.python # Python implementation
111
- │ ├── index.go # Go implementation
112
- │ ├── index.rs # Rust implementation
113
- │ └── index.c # C implementation
109
+ │ ├── index.js # JavaScript implementation (used by both Node.js and Bun)
110
+ └── index.py # Python implementation
114
111
  ├── fnode.yaml # Project configuration file
115
112
  └── .workspace/ # Build infrastructure (managed by CLI)
116
113
  ```
@@ -119,7 +116,7 @@ This allows you to:
119
116
 
120
117
  - Write your core logic once and migrate it to other languages as needed
121
118
  - Choose the best language for each specific use case
122
- - Start with one language for rapid prototyping, then migrate performance-critical parts to more efficient languages
119
+ - Use JavaScript with Node.js for quick development, Python for data processing, and JavaScript with Bun for improved performance
123
120
 
124
121
  ## Tag-Based Configuration
125
122