Skip to content

Commit 1b99010

Browse files
committed
chore(release): publish 1.1.1
1 parent 82a7308 commit 1b99010

File tree

15 files changed

+49
-13
lines changed

15 files changed

+49
-13
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## [1.1.1](https://github.com/NervJS/parse-css-to-stylesheet/compare/v1.1.0...v1.1.1) (2024-12-25)
2+
3+
4+
### Features
5+
6+
* 生成样式中增加 design_width 设计稿宽度 ([82a7308](https://github.com/NervJS/parse-css-to-stylesheet/commit/82a73085414921cb288a0acae5430fa6e2b2e955))
7+
8+
9+
10+
## [1.1.1](https://github.com/NervJS/parse-css-to-stylesheet/compare/v1.0.20...v1.1.1) (2024-12-25)
11+
12+
13+
### Bug Fixes
14+
15+
* 生成二进制暂时不处理 fonts/media/keyframes ([6f4a2d9](https://github.com/NervJS/parse-css-to-stylesheet/commit/6f4a2d94234349db2162d7bd2a0e14182e7ad2b6))
16+
* 完善样式编译成二进制处理 ([f0c467e](https://github.com/NervJS/parse-css-to-stylesheet/commit/f0c467edb3db331509661a69133a7fa94c186d7c))
17+
* update ci workflow ([c0a87a6](https://github.com/NervJS/parse-css-to-stylesheet/commit/c0a87a695cc000131282cd850b96036e9e7a98aa))
18+
19+
20+
### Features
21+
22+
* 更新 typings ([098e3d2](https://github.com/NervJS/parse-css-to-stylesheet/commit/098e3d23aba86b69ac277b655bd42bdc62d05e50))
23+
* 生成样式中增加 design_width 设计稿宽度 ([f9d6227](https://github.com/NervJS/parse-css-to-stylesheet/commit/f9d6227d338075667ac1a72cd283411f3207e314))
24+
* 添加pointer_events的解析 ([24f9746](https://github.com/NervJS/parse-css-to-stylesheet/commit/24f9746b475caa07c9baceab5ec525852ec7fbc4))
25+
* 支持将样式编译成二进制文件 ([8d53ada](https://github.com/NervJS/parse-css-to-stylesheet/commit/8d53adabd75a9e37033cfcffa2a6c0bc4df3d52c))
26+
* add registry ([f4b8ce7](https://github.com/NervJS/parse-css-to-stylesheet/commit/f4b8ce76a15f22442105fa8a2b5fd2718722170b))
27+
* rm node 16 ([ec7dbfc](https://github.com/NervJS/parse-css-to-stylesheet/commit/ec7dbfcb6d4edd96b9f16fdc1dbd2511ff103702))
28+
* use checkout v4 ([859aa90](https://github.com/NervJS/parse-css-to-stylesheet/commit/859aa90b673a3ac254be38b9bdfcde0c12824e9f))
29+
* use npm test ([8b72c6b](https://github.com/NervJS/parse-css-to-stylesheet/commit/8b72c6b69444f9a4c4055cb0238803b666d69711))
30+
* use pnpm ([1365797](https://github.com/NervJS/parse-css-to-stylesheet/commit/136579758f344b1a34af19f8e58bf7382064ddf6))
31+
* use pnpm ci ([66f1f9e](https://github.com/NervJS/parse-css-to-stylesheet/commit/66f1f9e05768d59104dbc1e7e0ddc4f1ea049697))
32+
33+
34+
135
# [1.1.0](https://github.com/NervJS/parse-css-to-stylesheet/compare/v1.0.20...v1.1.0) (2024-12-03)
236

337

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
import { parse } from '@tarojs/parse-css-to-stylesheet'
1111

1212
// Harmony
13-
const { code } = parse(jsxCode, [cssCode1, cssCode2, ...], {
13+
const { code } = parse([cssCode1, cssCode2, ...], {
1414
platformString: 'Harmony',
15+
designWidth: 750
1516
})
1617
// code: CSS 代码 string
1718
```

index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface OutputOptions {
88
}
99
export interface ParseOptions {
1010
platformString: string
11+
designWidth?: number
1112
output?: OutputOptions
1213
}
1314
export interface ParseResult {

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": "@tarojs/parse-css-to-stylesheet-android-arm-eabi",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"os": [
55
"android"
66
],

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": "@tarojs/parse-css-to-stylesheet-android-arm64",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"os": [
55
"android"
66
],

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": "@tarojs/parse-css-to-stylesheet-darwin-arm64",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"os": [
55
"darwin"
66
],

npm/darwin-universal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-darwin-universal",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"os": [
55
"darwin"
66
],

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": "@tarojs/parse-css-to-stylesheet-darwin-x64",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"os": [
55
"darwin"
66
],

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": "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"os": [
55
"linux"
66
],

npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"os": [
55
"linux"
66
],

0 commit comments

Comments
 (0)