topaz-lang 5.4.0 → 5.4.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.
- package/README.md +3 -2
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,8 @@ npx -p topaz-lang topaz run main.tpz
|
|
|
15
15
|
|
|
16
16
|
On install, a `postinstall` step downloads the `topaz` binary for your platform
|
|
17
17
|
(matching this package's version) and verifies its SHA256. `topaz run`,
|
|
18
|
-
`topaz check`, and `topaz emit` are standalone; `topaz build` additionally
|
|
19
|
-
a Rust toolchain present on your machine.
|
|
18
|
+
`topaz check`, and `topaz emit` are standalone; native `topaz build` additionally
|
|
19
|
+
needs a Rust toolchain present on your machine. Topaz 5.4.1 also includes the
|
|
20
|
+
experimental `topaz build --target python --experimental` witness artifact path.
|
|
20
21
|
|
|
21
22
|
License: Apache-2.0.
|
package/install.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// postinstall: download the prebuilt `topaz` binary that matches THIS package
|
|
2
|
-
// version (so `npm i topaz-lang@5.4.
|
|
2
|
+
// version (so `npm i topaz-lang@5.4.1` pins topaz v5.4.1), verify its SHA256,
|
|
3
3
|
// and drop it next to the bin shim. No Rust source, no build.
|
|
4
4
|
'use strict';
|
|
5
5
|
const { mkdir, writeFile, chmod, rename } = require('node:fs/promises');
|