@sourcegraph/amp 0.0.1764892237-g17504a → 0.0.1764921674-g2aab2c
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 +19 -0
- package/dist/main.js +874 -818
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,3 +61,22 @@ See `amp --help` and the [Amp CLI documentation](https://ampcode.com/manual#cli)
|
|
|
61
61
|
For help and feedback: mention [@AmpCode](https://x.com/AmpCode) on X, or email [amp-devs@ampcode.com](mailto:amp-devs@ampcode.com). You can also join our community [Build Crew](https://buildcrew.team).
|
|
62
62
|
|
|
63
63
|
For account and billing help, contact [amp-devs@ampcode.com](mailto:amp-devs@ampcode.com).
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Development
|
|
68
|
+
|
|
69
|
+
**Binary Distribution (Experimental)**
|
|
70
|
+
|
|
71
|
+
Pre-compiled binaries for platforms without Node.js/Bun. Version must match npm for update checks.
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# Build all platforms
|
|
75
|
+
LATEST_VERSION=$(npm view @sourcegraph/amp version)
|
|
76
|
+
AMP_BUILD_VERSION="$LATEST_VERSION" ./scripts/build-all-binaries.sh
|
|
77
|
+
|
|
78
|
+
# Test
|
|
79
|
+
./scripts/test-binary-release.sh
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
See scripts: `build-all-binaries.sh`, `upload-binaries.sh`, `test-binary-release.sh`
|