@kandiforge/spectacle 0.3.35 → 0.3.37

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.
Binary file
Binary file
package/bin/kandi-gpt-bin CHANGED
Binary file
Binary file
package/bin/kandi-run-bin CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kandiforge/spectacle",
3
- "version": "0.3.35",
3
+ "version": "0.3.37",
4
4
  "description": "Spectacle server and CLI tools for KandiForge ecosystem",
5
5
  "author": "Abstract Class Consulting Inc.",
6
6
  "license": "PROPRIETARY",
@@ -9,7 +9,7 @@ const stream = require('stream');
9
9
  const pipeline = promisify(stream.pipeline);
10
10
 
11
11
  // This version MUST match package.json
12
- const RELEASE_VERSION = '0.3.35';
12
+ const RELEASE_VERSION = '0.3.37';
13
13
  const GITHUB_REPO = 'KandiForge/distribution';
14
14
 
15
15
  function downloadFile(url, destPath) {
@@ -65,10 +65,11 @@ async function install() {
65
65
  const arch = process.arch;
66
66
 
67
67
  // Determine file name based on platform
68
+ // Binary names must match what spectacle-release.yml packages
68
69
  let fileName, isZip;
69
70
  const binaries = platform === 'win32'
70
- ? ['kandi-spectacle.exe', 'kandi-plan.exe', 'kandi-gpt.exe', 'kandi-deploy.exe', 'kandi-secure.exe', 'kandi-forge.exe', 'supersmall.exe']
71
- : ['kandi-spectacle', 'kandi-plan', 'kandi-gpt', 'kandi-deploy', 'kandi-secure', 'kandi-forge', 'supersmall'];
71
+ ? ['kandi-spectacle.exe', 'kandi-plan.exe', 'kandi-gpt.exe', 'kandi-run.exe', 'kandi-test.exe', 'kandi-deploy.exe', 'kandi-secure.exe', 'kandi-forge.exe', 'kandi-supersmall.exe']
72
+ : ['kandi-spectacle', 'kandi-plan', 'kandi-gpt', 'kandi-run', 'kandi-test', 'kandi-deploy', 'kandi-secure', 'kandi-forge', 'kandi-supersmall'];
72
73
 
73
74
  if (platform === 'darwin') {
74
75
  fileName = `spectacle-v${RELEASE_VERSION}-macos-universal.tar.gz`;