Skip to content

Commit 0797dd3

Browse files
committed
fix(js): Republish npm package with correct multi-target dist (v0.1.4)
- 0.1.3 was incorrectly published with single-target nodejs build only - 0.1.4 includes dist/nodejs/, dist/bundler/, dist/web/ with conditional exports - Bump JS package.json and Cargo.toml to 0.1.4 - Add CHANGELOG entry
1 parent 9e06d77 commit 0797dd3

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to ICL Runtime will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.4] - 2026-02-11
9+
10+
### Fixed
11+
- Re-published npm package with correct multi-target `dist/` layout (0.1.3 was incorrectly published with single-target nodejs build only)
12+
- `npm install icl-runtime` now correctly includes `dist/nodejs/`, `dist/bundler/`, and `dist/web/` with conditional exports
13+
814
## [0.1.3] - 2026-02-11
915

1016
### Added

bindings/javascript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icl-runtime"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
authors = ["ICL Team"]
66
license = "MIT"

bindings/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "icl-runtime",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "JavaScript/TypeScript bindings for ICL (Intent Contract Language) via WebAssembly — works in Node.js, browsers, and bundlers out of the box",
55
"main": "./dist/nodejs/icl_runtime.js",
66
"module": "./dist/bundler/icl_runtime.js",

0 commit comments

Comments
 (0)