norn-cli 1.5.0 → 1.5.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/.norn-cache/swagger-body-intellisense.json +1 -1
- package/CHANGELOG.md +15 -0
- package/dist/cli.js +423 -230
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "Norn" extension will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.5.1] - 2026-02-28
|
|
6
|
+
|
|
7
|
+
### Improved
|
|
8
|
+
- **Path IntelliSense (Import + Scripts)**:
|
|
9
|
+
- Added relative path completions for `import` statements and script commands (`run bash`, `run powershell`, `run js`, `run readJson`) in `.norn` files.
|
|
10
|
+
- Suggestions now resolve from the active file directory and continue navigation on `/`.
|
|
11
|
+
- File suggestions prioritize relevant extensions by context (for example `.norn`/`.nornapi` for imports, `.ps1` for PowerShell, `.js` for JS).
|
|
12
|
+
|
|
13
|
+
- **.nornenv IntelliSense**:
|
|
14
|
+
- Added relative import path IntelliSense in `.nornenv` files.
|
|
15
|
+
- `.nornenv` is now visible in path suggestions by default, even when hidden files are not explicitly prefixed.
|
|
16
|
+
|
|
17
|
+
- **Suggestion Icon Consistency**:
|
|
18
|
+
- Path completion entries now consistently use file/folder icons in suggest lists to avoid iconless entries.
|
|
19
|
+
|
|
5
20
|
## [1.5.0] - 2026-02-26
|
|
6
21
|
|
|
7
22
|
### Added
|