@constellationdev/cli 1.0.0 → 1.1.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 +5 -2
- package/dist/main.js +64 -61
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -36,8 +36,9 @@ Currently supports:
|
|
|
36
36
|
- **JavaScript**
|
|
37
37
|
- **TypeScript**
|
|
38
38
|
- **Python**
|
|
39
|
+
- **Go**
|
|
39
40
|
|
|
40
|
-
_Additional languages (C, C++, C#,
|
|
41
|
+
_Additional languages (C, C++, C#, Java, JSON, PHP, Ruby, Shell) coming soon_
|
|
41
42
|
|
|
42
43
|
### Security
|
|
43
44
|
|
|
@@ -187,10 +188,12 @@ The `constellation.json` file controls indexing:
|
|
|
187
188
|
|
|
188
189
|
| Language | Identifier | Default Extensions |
|
|
189
190
|
| ---------- | ------------ | ----------------------------- |
|
|
191
|
+
| Go | `go` | `.go` |
|
|
190
192
|
| JavaScript | `javascript` | `.js`, `.jsx`, `.mjs`, `.cjs` |
|
|
193
|
+
| Python | `python` | `.py`, `.pyi`, `.pyw` |
|
|
191
194
|
| TypeScript | `typescript` | `.ts`, `.tsx` |
|
|
192
195
|
|
|
193
|
-
**Coming Soon**: C, C++, C#,
|
|
196
|
+
**Coming Soon**: C, C++, C#, Java, JSON, PHP, Ruby, Shell, and more!
|
|
194
197
|
|
|
195
198
|
## 🔧 Advanced Usage
|
|
196
199
|
|