Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 0.18.2 (13 August 2025)

### Fixed

- Fix rollup configuration adding `types: "./rapier.d.ts"` to the export config.

### 0.18.1 (8 August 2025)

### Modified
Expand Down
181 changes: 133 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion builds/prepare_builds/templates/Cargo.toml.tera
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dimforge_{{ js_package_name }}" # Can't be named rapier{{ dimension }}d which conflicts with the dependency.
version = "0.18.1"
version = "0.18.2"
authors = ["Sébastien Crozet <developer@crozet.re>"]
description = "{{ dimension }}-dimensional physics engine in Rust - official JS bindings."
documentation = "https://rapier.rs/rustdoc/rapier{{ dimension }}d/index.html"
Expand Down
1 change: 1 addition & 0 deletions rapier-compat/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const config = (dim, features_postfix) => ({
config.module = "rapier.mjs";
config.exports = {
".": {
types: "./rapier.d.ts",
require: "./rapier.cjs",
import: "./rapier.mjs",
},
Expand Down
Loading