Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(js): use api-extractor to fix typings #1083

Merged
merged 6 commits into from
Feb 20, 2025
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
54 changes: 34 additions & 20 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "daily"
time: "04:00" # UTC
labels:
- "dependencies"
commit-message:
prefix: "bump"
open-pull-requests-limit: 10
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
labels:
- "dependencies"
commit-message:
prefix: "chore(ci)"
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "daily"
time: "04:00" # UTC
labels:
- "dependencies"
commit-message:
prefix: "bump"
open-pull-requests-limit: 10

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
labels:
- "dependencies"
commit-message:
prefix: "chore(ci)"

- package-ecosystem: "npm"
directory: "js-rattler"
schedule:
interval: "daily"
labels:
- "dependencies"
commit-message:
prefix: "chore(ci)"
groups:
npm-dependencies:
patterns:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/js-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

- run: npm ci
working-directory: js-rattler
- run: npm run fmt
- run: npm run fmt:check
working-directory: js-rattler
- run: npm run build --if-present
working-directory: js-rattler
Expand Down
1 change: 1 addition & 0 deletions js-rattler/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.json linguist-language=JSON-with-Comments
1 change: 1 addition & 0 deletions js-rattler/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
bin/
pkg/
dist/
types/
node_modules/
wasm-pack.log
!Cargo.lock
3 changes: 2 additions & 1 deletion js-rattler/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"semi": true,
"trailingComma": "all",
"useTabs": false,
"plugins": ["prettier-plugin-jsdoc"]
"plugins": ["prettier-plugin-jsdoc"],
"tsdoc": true
}
2 changes: 1 addition & 1 deletion js-rattler/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 js-rattler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "js-rattler"
version = "0.1.0"
version = "0.1.1"
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
edition = "2021"
description = "WASM bindings to the rattler library"
Expand Down
Loading