norn-cli 2.7.0 → 2.8.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/CHANGELOG.md +15 -0
- package/README.md +5 -1
- package/dist/cli.js +135537 -598
- package/foo.ps1 +1 -0
- package/package.json +12 -1
package/foo.ps1
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Write-Host "Hello"
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "norn-cli",
|
|
3
3
|
"displayName": "Norn — Tests and Runbooks in Your Repo",
|
|
4
4
|
"description": "Version-controlled API, database, and Kubernetes tests and runbooks. Author in VS Code, then run the same files from the CLI and CI.",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.8.0",
|
|
6
6
|
"publisher": "Norn-PeterKrustanov",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Peter Krastanov"
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"onCommand:norn.createSqlStarterFiles",
|
|
58
58
|
"onCommand:norn.createMcpStarterConfig",
|
|
59
59
|
"onCommand:norn.openTerminal",
|
|
60
|
+
"onCommand:norn.terminal.focusRawTerminal",
|
|
60
61
|
"onCommand:norn.debugSequence",
|
|
61
62
|
"onDebugResolve:norn"
|
|
62
63
|
],
|
|
@@ -113,6 +114,11 @@
|
|
|
113
114
|
"title": "Open Terminal",
|
|
114
115
|
"category": "Norn"
|
|
115
116
|
},
|
|
117
|
+
{
|
|
118
|
+
"command": "norn.terminal.focusRawTerminal",
|
|
119
|
+
"title": "Focus Raw Terminal",
|
|
120
|
+
"category": "Norn"
|
|
121
|
+
},
|
|
116
122
|
{
|
|
117
123
|
"command": "norn.nornenv.activate",
|
|
118
124
|
"title": "Activate Norn Environment",
|
|
@@ -519,6 +525,8 @@
|
|
|
519
525
|
"vscode:prepublish": "npm run package",
|
|
520
526
|
"compile": "npm run check-types && npm run lint && node esbuild.js",
|
|
521
527
|
"compile:cli": "npm run check-types && node esbuild.js --cli",
|
|
528
|
+
"stage:pty-spike-native": "node ./scripts/stage-pty-spike-native.mjs",
|
|
529
|
+
"package:pty-spike": "npm run package && npm run stage:pty-spike-native",
|
|
522
530
|
"watch": "npm-run-all -p watch:*",
|
|
523
531
|
"watch:esbuild": "node esbuild.js --watch",
|
|
524
532
|
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
|
@@ -545,8 +553,11 @@
|
|
|
545
553
|
"@types/vscode": "^1.108.1",
|
|
546
554
|
"@vscode/test-cli": "^0.0.12",
|
|
547
555
|
"@vscode/test-electron": "^2.5.2",
|
|
556
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
557
|
+
"@xterm/xterm": "^6.0.0",
|
|
548
558
|
"esbuild": "^0.27.2",
|
|
549
559
|
"eslint": "^9.39.2",
|
|
560
|
+
"node-pty": "^1.1.0",
|
|
550
561
|
"npm-run-all": "^4.1.5",
|
|
551
562
|
"typescript": "^5.9.3",
|
|
552
563
|
"typescript-eslint": "^8.52.0"
|