@beads/bd 1.0.2 → 1.0.4
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 +8 -8
- package/package.json +1 -1
- package/scripts/postinstall.js +5 -5
package/README.md
CHANGED
|
@@ -97,13 +97,13 @@ This package downloads the appropriate native binary for your platform:
|
|
|
97
97
|
|
|
98
98
|
## Full Documentation
|
|
99
99
|
|
|
100
|
-
For complete documentation, see the [beads GitHub repository](https://github.com/
|
|
100
|
+
For complete documentation, see the [beads GitHub repository](https://github.com/gastownhall/beads):
|
|
101
101
|
|
|
102
|
-
- [Complete README](https://github.com/
|
|
103
|
-
- [Quick Start (documentation site)](https://
|
|
104
|
-
- [Installation Guide](https://github.com/
|
|
105
|
-
- [FAQ](https://github.com/
|
|
106
|
-
- [Troubleshooting](https://github.com/
|
|
102
|
+
- [Complete README](https://github.com/gastownhall/beads#readme)
|
|
103
|
+
- [Quick Start (documentation site)](https://gastownhall.github.io/beads/getting-started/quickstart) · [repo pointer](https://github.com/gastownhall/beads/blob/main/docs/QUICKSTART.md)
|
|
104
|
+
- [Installation Guide](https://github.com/gastownhall/beads/blob/main/docs/INSTALLING.md)
|
|
105
|
+
- [FAQ](https://github.com/gastownhall/beads/blob/main/docs/FAQ.md)
|
|
106
|
+
- [Troubleshooting](https://github.com/gastownhall/beads/blob/main/docs/TROUBLESHOOTING.md)
|
|
107
107
|
|
|
108
108
|
## Why npm Package vs WASM?
|
|
109
109
|
|
|
@@ -120,5 +120,5 @@ MIT - See [LICENSE](LICENSE) for details.
|
|
|
120
120
|
|
|
121
121
|
## Support
|
|
122
122
|
|
|
123
|
-
- [GitHub Issues](https://github.com/
|
|
124
|
-
- [Documentation](https://github.com/
|
|
123
|
+
- [GitHub Issues](https://github.com/gastownhall/beads/issues)
|
|
124
|
+
- [Documentation](https://github.com/gastownhall/beads)
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -260,11 +260,11 @@ async function install() {
|
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
// Construct download URL
|
|
263
|
-
// Format: https://github.com/
|
|
263
|
+
// Format: https://github.com/gastownhall/beads/releases/download/v0.21.5/beads_0.21.5_darwin_amd64.tar.gz
|
|
264
264
|
const releaseVersion = VERSION;
|
|
265
265
|
const archiveExt = platformName === 'windows' ? 'zip' : 'tar.gz';
|
|
266
266
|
const archiveName = `beads_${releaseVersion}_${platformName}_${archName}.${archiveExt}`;
|
|
267
|
-
const downloadUrl = `https://github.com/
|
|
267
|
+
const downloadUrl = `https://github.com/gastownhall/beads/releases/download/v${releaseVersion}/${archiveName}`;
|
|
268
268
|
const archivePath = path.join(binDir, archiveName);
|
|
269
269
|
|
|
270
270
|
// Download the archive
|
|
@@ -299,9 +299,9 @@ async function install() {
|
|
|
299
299
|
console.error(`Error installing bd: ${err.message}`);
|
|
300
300
|
console.error('');
|
|
301
301
|
console.error('Installation failed. You can try:');
|
|
302
|
-
console.error('1. Installing manually from: https://github.com/
|
|
303
|
-
console.error('2. Using the install script: curl -fsSL https://raw.githubusercontent.com/
|
|
304
|
-
console.error('3. Opening an issue: https://github.com/
|
|
302
|
+
console.error('1. Installing manually from: https://github.com/gastownhall/beads/releases');
|
|
303
|
+
console.error('2. Using the install script: curl -fsSL https://raw.githubusercontent.com/gastownhall/beads/main/scripts/install.sh | bash');
|
|
304
|
+
console.error('3. Opening an issue: https://github.com/gastownhall/beads/issues');
|
|
305
305
|
process.exit(1);
|
|
306
306
|
}
|
|
307
307
|
}
|