@opentf/web-compiler 0.1.0 → 0.2.0

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 CHANGED
@@ -25,9 +25,8 @@ the cargo `target/` build).
25
25
  ## Releasing (CI)
26
26
 
27
27
  `bin/` is empty in git, and the package is `private: true` only as a guard so the
28
- monorepo `changeset publish` doesn't ship it binary-less. It is published by its
29
- own workflow, `.github/workflows/release-compiler.yml` (run manually after a
30
- release): that cross-builds otfwc for each target, brotli-compresses each into
28
+ monorepo release flow doesn't ship it binary-less. It is published by its own
29
+ workflow, `.github/workflows/release-compiler.yml` (run manually after a release):
30
+ that cross-builds otfwc for each target, brotli-compresses each into
31
31
  `bin/<platform>/`, flips `private` off, and publishes — so the package on npm is
32
- public. Versioning is owned entirely by changesets — there is no version-sync
33
- script.
32
+ public.
Binary file
Binary file
Binary file
Binary file
package/extract.js CHANGED
@@ -15,7 +15,6 @@ const here = dirname(fileURLToPath(import.meta.url));
15
15
  // `process.platform-process.arch` maps directly onto our bin/ subdirectory names.
16
16
  const SUPPORTED = new Set([
17
17
  "linux-x64",
18
- "linux-arm64",
19
18
  "darwin-x64",
20
19
  "darwin-arm64",
21
20
  "win32-x64",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentf/web-compiler",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "OTF Web IR compiler (otfwc) — prebuilt platform binaries + host resolver (ARCHITECTURE.md §8).",
5
5
  "type": "module",
6
6
  "main": "index.js",
Binary file