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
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ jobs:
- host: windows-2022
build: yarn build
target: x86_64-pc-windows-msvc
- host: windows-2022
build: yarn build --target aarch64-pc-windows-msvc
target: aarch64-pc-windows-msvc
- host: ubuntu-22.04
target: x86_64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
Expand Down Expand Up @@ -332,6 +335,11 @@ jobs:
run: yarn config set supportedArchitectures.cpu "arm64"
working-directory: bindings/javascript

- name: Config yarn (aarch64-pc-windows-msvc)
if: matrix.settings.target == 'aarch64-pc-windows-msvc'
run: yarn config set supportedArchitectures.cpu "arm64"
working-directory: bindings/javascript

- name: Config yarn (armv7-linux-androideabi)
if: matrix.settings.target == 'armv7-linux-androideabi'
run: yarn config set supportedArchitectures.cpu "arm"
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/javascript-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
- host: windows-2022
build: yarn build
target: x86_64-pc-windows-msvc
- host: windows-2022
build: yarn build --target aarch64-pc-windows-msvc
target: aarch64-pc-windows-msvc
- host: ubuntu-22.04
target: x86_64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
Expand Down Expand Up @@ -148,6 +151,11 @@ jobs:
run: yarn config set supportedArchitectures.cpu "arm64"
working-directory: bindings/javascript

- name: Config yarn (aarch64-pc-windows-msvc)
if: matrix.settings.target == 'aarch64-pc-windows-msvc'
run: yarn config set supportedArchitectures.cpu "arm64"
working-directory: bindings/javascript

- name: Config yarn (armv7-linux-androideabi)
if: matrix.settings.target == 'armv7-linux-androideabi'
run: yarn config set supportedArchitectures.cpu "arm"
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

### Fixed

- Prioritize `!important` rules when computing element styles. [#398](https://github.com/Stranger6667/css-inline/pull/398)

## [0.14.2] - 2024-11-11
Expand Down
2 changes: 2 additions & 0 deletions bindings/c/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

### Fixed

- Prioritize `!important` rules when computing element styles. [#398](https://github.com/Stranger6667/css-inline/pull/398)

## [0.14.2] - 2024-11-11
Expand Down
6 changes: 6 additions & 0 deletions bindings/javascript/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

### Added

- Packages for `win32-arm64-msvc`. [#397](https://github.com/Stranger6667/css-inline/issues/397)

### Fixed

- Prioritize `!important` rules when computing element styles. [#398](https://github.com/Stranger6667/css-inline/pull/398)

## [0.14.2] - 2024-11-11
Expand Down
3 changes: 3 additions & 0 deletions bindings/javascript/npm/win32-arm64-msvc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `@css-inline/css-inline-win32-arm64-msvc`

This is the **aarch64-pc-windows-msvc** binary for `@css-inline/css-inline`
31 changes: 31 additions & 0 deletions bindings/javascript/npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "@css-inline/css-inline-win32-arm64-msvc",
"version": "0.14.2",
"description": "High-performance library for inlining CSS into HTML 'style' attributes",
"keywords": [
"css",
"html",
"email",
"stylesheet",
"inlining"
],
"repository": "https://github.com/Stranger6667/css-inline",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"os": [
"win32"
],
"cpu": [
"arm64"
],
"main": "css-inline.win32-arm64-msvc.node",
"files": [
"css-inline.win32-arm64-msvc.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}
3 changes: 2 additions & 1 deletion bindings/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"aarch64-linux-android",
"arm-linux-androideabi"
]
}
Expand Down
2 changes: 2 additions & 0 deletions bindings/python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

### Fixed

- Prioritize `!important` rules when computing element styles. [#398](https://github.com/Stranger6667/css-inline/pull/398)

## [0.14.2] - 2024-11-11
Expand Down
2 changes: 2 additions & 0 deletions bindings/ruby/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

### Fixed

- Prioritize `!important` rules when computing element styles. [#398](https://github.com/Stranger6667/css-inline/pull/398)

## [0.14.2] - 2024-11-11
Expand Down