norn-cli 2.8.2 → 2.9.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/cli.js +603 -135542
  3. package/package.json +6 -5
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "norn-cli",
3
- "displayName": "Norn — Tests and Runbooks in Your Repo",
3
+ "displayName": "Norn",
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.8.2",
5
+ "version": "2.9.1",
6
6
  "publisher": "Norn-PeterKrustanov",
7
7
  "author": {
8
8
  "name": "Peter Krastanov"
@@ -522,15 +522,16 @@
522
522
  }
523
523
  },
524
524
  "scripts": {
525
- "vscode:prepublish": "npm run package",
525
+ "vscode:prepublish": "npm run package:pty-spike",
526
526
  "compile": "npm run check-types && npm run lint && node esbuild.js",
527
527
  "compile:cli": "npm run check-types && node esbuild.js --cli",
528
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",
529
+ "package:pty-spike": "npm run package:extension && npm run stage:pty-spike-native",
530
530
  "watch": "npm-run-all -p watch:*",
531
531
  "watch:esbuild": "node esbuild.js --watch",
532
532
  "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
533
- "package": "npm run check-types && npm run lint && node esbuild.js --production",
533
+ "package": "npm run package:extension",
534
+ "package:extension": "npm run check-types && npm run lint && node esbuild.js --production",
534
535
  "compile-tests": "node -e \"require('fs').rmSync('out/test',{recursive:true,force:true})\" && tsc -p . --outDir out",
535
536
  "watch-tests": "tsc -p . -w --outDir out",
536
537
  "pretest": "npm run compile-tests && npm run compile && npm run lint",