Skip to content

Commit 30fc6de

Browse files
committed
chore(javascript): Release 0.19.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent fa14ee7 commit 30fc6de

File tree

21 files changed

+29
-16
lines changed

21 files changed

+29
-16
lines changed

.github/workflows/javascript-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,10 +294,14 @@ jobs:
294294
make_latest: false
295295
draft: true
296296
name: "[JavaScript] Release ${{ env.version }}"
297+
files: |
298+
bindings/javascript/npm/**/*.node
297299
298300
- name: Publish to npm packages
299301
run: |
300302
npm publish --access public --provenance
301303
cd wasm-dist
302304
npm publish --access public --provenance
303305
working-directory: bindings/javascript
306+
env:
307+
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

bindings/javascript/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.19.0] - 2025-12-29
6+
57
### Added
68

79
- `removeInlinedSelectors` option to remove selectors that were successfully inlined from `<style>` blocks.
@@ -159,7 +161,8 @@
159161

160162
- Initial public release
161163

162-
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/javascript-v0.18.0...HEAD
164+
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/javascript-v0.19.0...HEAD
165+
[0.19.0]: https://github.com/Stranger6667/css-inline/compare/javascript-v0.18.0...javascript-v0.19.0
163166
[0.18.0]: https://github.com/Stranger6667/css-inline/compare/javascript-v0.17.0...javascript-v0.18.0
164167
[0.17.0]: https://github.com/Stranger6667/css-inline/compare/javascript-v0.16.0...javascript-v0.17.0
165168
[0.16.0]: https://github.com/Stranger6667/css-inline/compare/javascript-v0.15.0...javascript-v0.16.0

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 = "css-inline-js"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2024"
66
readme = "README.md"

bindings/javascript/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ export interface Options {
3535
* It can improve performance when you have an estimate of the number of nodes in your HTML document.
3636
*/
3737
preallocateNodeCapacity?: number
38+
/** Remove selectors that were successfully inlined from inline `<style>` blocks. */
39+
removeInlinedSelectors?: boolean
3840
}
3941

4042
export interface StylesheetCache {

bindings/javascript/js-binding.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ export interface Options {
3535
* It can improve performance when you have an estimate of the number of nodes in your HTML document.
3636
*/
3737
preallocateNodeCapacity?: number
38+
/** Remove selectors that were successfully inlined from inline `<style>` blocks. */
39+
removeInlinedSelectors?: boolean
3840
}
3941

4042
export interface StylesheetCache {

bindings/javascript/npm/android-arm-eabi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-inline/css-inline-android-arm-eabi",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"description": "High-performance library for inlining CSS into HTML 'style' attributes",
55
"keywords": [
66
"css",

bindings/javascript/npm/android-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-inline/css-inline-android-arm64",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"description": "High-performance library for inlining CSS into HTML 'style' attributes",
55
"keywords": [
66
"css",

bindings/javascript/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-inline/css-inline-darwin-arm64",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"description": "High-performance library for inlining CSS into HTML 'style' attributes",
55
"keywords": [
66
"css",

bindings/javascript/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-inline/css-inline-darwin-x64",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"description": "High-performance library for inlining CSS into HTML 'style' attributes",
55
"keywords": [
66
"css",

bindings/javascript/npm/linux-arm-gnueabihf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-inline/css-inline-linux-arm-gnueabihf",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"description": "High-performance library for inlining CSS into HTML 'style' attributes",
55
"keywords": [
66
"css",

0 commit comments

Comments
 (0)