Skip to content

Commit fe2080a

Browse files
authored
0.16.1 (#1263)
1 parent 74b0065 commit fe2080a

File tree

19 files changed

+100
-93
lines changed

19 files changed

+100
-93
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.16.1 (Oct 2, 2025)
4+
- New `no-lookahead-selector` lint rule to flag certain descendant and sibling selectors.
5+
- Fix priorities for descendant and sibling selectors.
6+
- Fix color functions for `valid-shorthands` rule.
7+
- Fix hoisting issues with duplicate keys in `create` calls.
8+
- Add storybook example.
9+
310
## 0.16.0 (Sep 25, 2025)
411
- Added support for descendant and shared selectors.
512
- Support CSS variable overrides with `defineConsts`.

examples/example-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "example-cli",
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"scripts": {
66
"example:build": "stylex --config .stylex.json5"
77
},
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@babel/preset-react": "^7.25.7",
1515
"@babel/preset-typescript": "^7.25.7",
16-
"@stylexjs/cli": "0.16.0",
16+
"@stylexjs/cli": "0.16.1",
1717
"@types/react": "^18.3.0",
1818
"@types/react-dom": "^18.3.0",
1919
"typescript": "^5"

examples/example-esbuild/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "example-esbuild",
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"description": "Simple esbuild example for @stylexjs/esbuild-plugin",
66
"main": "src/App.jsx",
77
"scripts": {
@@ -11,13 +11,13 @@
1111
"license": "MIT",
1212
"dependencies": {
1313
"@stylexjs/open-props": "0.11.1",
14-
"@stylexjs/stylex": "0.16.0",
14+
"@stylexjs/stylex": "0.16.1",
1515
"react": "^18.3.0",
1616
"react-dom": "^18.3.0"
1717
},
1818
"devDependencies": {
1919
"@stylexjs/esbuild-plugin": "0.11.1",
20-
"@stylexjs/eslint-plugin": "0.16.0",
20+
"@stylexjs/eslint-plugin": "0.16.1",
2121
"esbuild": "^0.25.0",
2222
"eslint": "^8.57.1"
2323
}

examples/example-nextjs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "example-nextjs",
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"scripts": {
66
"clean": "rimraf .next",
77
"example:build": "next build",
@@ -11,15 +11,15 @@
1111
},
1212
"dependencies": {
1313
"@stylexjs/open-props": "0.11.1",
14-
"@stylexjs/stylex": "0.16.0",
14+
"@stylexjs/stylex": "0.16.1",
1515
"next": "14.2.21",
1616
"react": "^18.3.0",
1717
"react-dom": "^18.3.0",
1818
"styled-jsx": "^5.1.1"
1919
},
2020
"devDependencies": {
21-
"@stylexjs/eslint-plugin": "0.16.0",
22-
"@stylexjs/postcss-plugin": "0.16.0",
21+
"@stylexjs/eslint-plugin": "0.16.1",
22+
"@stylexjs/postcss-plugin": "0.16.1",
2323
"@types/json-schema": "^7.0.15",
2424
"@types/node": "^22.7.6",
2525
"@types/react": "^18.3.0",

examples/example-rollup/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "example-rollup",
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"description": "A simple rollup example to test stylexjs/rollup-plugin",
66
"main": "index.js",
77
"scripts": {
@@ -11,7 +11,7 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@stylexjs/stylex": "0.16.0",
14+
"@stylexjs/stylex": "0.16.1",
1515
"react": "^19.0.0",
1616
"react-dom": "^19.0.0"
1717
},
@@ -23,7 +23,7 @@
2323
"@rollup/plugin-commonjs": "^26.0.1",
2424
"@rollup/plugin-node-resolve": "^15.2.3",
2525
"@rollup/plugin-replace": "^5.0.7",
26-
"@stylexjs/rollup-plugin": "0.16.0",
26+
"@stylexjs/rollup-plugin": "0.16.1",
2727
"rollup": "^4.24.0",
2828
"serve": "^14.2.4"
2929
}

examples/example-storybook/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "example-storybook",
4-
"version": "1.0.0",
4+
"version": "0.16.1",
55
"scripts": {
66
"storybook": "storybook dev -p 6006 --no-open",
77
"build-storybook": "storybook build",
@@ -15,10 +15,10 @@
1515
"@storybook/addon-links": "^9.1.7",
1616
"@storybook/addon-vitest": "^9.1.7",
1717
"@storybook/react-vite": "^9.1.7",
18-
"@stylexjs/babel-plugin": "^0.15.4",
19-
"@stylexjs/eslint-plugin": "^0.15.4",
20-
"@stylexjs/postcss-plugin": "^0.15.4",
21-
"@stylexjs/stylex": "^0.15.4",
18+
"@stylexjs/babel-plugin": "0.16.1",
19+
"@stylexjs/eslint-plugin": "0.16.1",
20+
"@stylexjs/postcss-plugin": "0.16.1",
21+
"@stylexjs/stylex": "0.16.1",
2222
"@typescript-eslint/eslint-plugin": "^8.44.0",
2323
"@typescript-eslint/parser": "^8.44.0",
2424
"@vitejs/plugin-react": "^5.0.3",
@@ -38,4 +38,4 @@
3838
"vite-plugin-dts": "^4.5.4",
3939
"vitest": "^3.2.4"
4040
}
41-
}
41+
}

examples/example-webpack/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "example-webpack",
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"description": "A simple webpack example to test stylexjs/webpack-plugin",
66
"main": "index.js",
77
"scripts": {
@@ -15,9 +15,9 @@
1515
"@babel/preset-env": "^7.28.3",
1616
"@babel/preset-react": "^7.27.1",
1717
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.1",
18-
"@stylexjs/babel-plugin": "0.16.0",
19-
"@stylexjs/eslint-plugin": "0.16.0",
20-
"@stylexjs/postcss-plugin": "0.16.0",
18+
"@stylexjs/babel-plugin": "0.16.1",
19+
"@stylexjs/eslint-plugin": "0.16.1",
20+
"@stylexjs/postcss-plugin": "0.16.1",
2121
"autoprefixer": "^10.4.21",
2222
"babel-loader": "^10.0.0",
2323
"css-loader": "^7.1.2",
@@ -33,7 +33,7 @@
3333
"webpack-dev-server": "^5.2.2"
3434
},
3535
"dependencies": {
36-
"@stylexjs/stylex": "0.16.0",
36+
"@stylexjs/stylex": "0.16.1",
3737
"react": "^19.1.1",
3838
"react-dom": "^19.1.1"
3939
}

0 commit comments

Comments
 (0)