Skip to content

Commit 819e216

Browse files
Version Packages
1 parent d8ff8a5 commit 819e216

File tree

24 files changed

+192
-84
lines changed

24 files changed

+192
-84
lines changed

.changeset/tiny-jeans-check.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.changeset/witty-guests-care.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/cache/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @emotion/cache
22

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b)]:
16+
- @emotion/sheet@1.4.0
17+
- @emotion/utils@1.4.0
18+
319
## 11.12.0
420

521
### Patch Changes

packages/cache/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/cache",
3-
"version": "11.12.0",
3+
"version": "11.13.0",
44
"description": "emotion's cache",
55
"main": "dist/emotion-cache.cjs.js",
66
"module": "dist/emotion-cache.esm.js",
@@ -60,8 +60,8 @@
6060
},
6161
"dependencies": {
6262
"@emotion/memoize": "^0.9.0",
63-
"@emotion/sheet": "^1.3.0",
64-
"@emotion/utils": "^1.3.0",
63+
"@emotion/sheet": "^1.4.0",
64+
"@emotion/utils": "^1.4.0",
6565
"@emotion/weak-memoize": "^0.4.0",
6666
"stylis": "4.2.0"
6767
},

packages/css/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# emotion
22

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b)]:
16+
- @emotion/cache@11.13.0
17+
- @emotion/serialize@1.3.0
18+
- @emotion/sheet@1.4.0
19+
- @emotion/utils@1.4.0
20+
321
## 11.12.0
422

523
### Minor Changes

packages/css/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/css",
3-
"version": "11.12.0",
3+
"version": "11.13.0",
44
"description": "The Next Generation of CSS-in-JS.",
55
"main": "dist/emotion-css.cjs.js",
66
"module": "dist/emotion-css.esm.js",
@@ -17,10 +17,10 @@
1717
},
1818
"dependencies": {
1919
"@emotion/babel-plugin": "^11.12.0",
20-
"@emotion/cache": "^11.12.0",
21-
"@emotion/serialize": "^1.2.0",
22-
"@emotion/sheet": "^1.3.0",
23-
"@emotion/utils": "^1.3.0"
20+
"@emotion/cache": "^11.13.0",
21+
"@emotion/serialize": "^1.3.0",
22+
"@emotion/sheet": "^1.4.0",
23+
"@emotion/utils": "^1.4.0"
2424
},
2525
"devDependencies": {
2626
"@definitelytyped/dtslint": "0.0.112",

packages/jest/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @emotion/jest
22

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Adjustments to how speedy rules are obtained by the plugin.
8+
39
## 11.11.0
410

511
### Patch Changes

packages/jest/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/jest",
3-
"version": "11.11.0",
3+
"version": "11.13.0",
44
"description": "Jest utilities for emotion",
55
"main": "dist/emotion-jest.cjs.js",
66
"module": "dist/emotion-jest.esm.js",
@@ -76,8 +76,8 @@
7676
},
7777
"devDependencies": {
7878
"@definitelytyped/dtslint": "0.0.112",
79-
"@emotion/css": "11.12.0",
80-
"@emotion/react": "11.12.0",
79+
"@emotion/css": "11.13.0",
80+
"@emotion/react": "11.13.0",
8181
"@types/jest": "^29.5.12",
8282
"enzyme-to-json": "^3.6.1",
8383
"pretty-format": "^22.4.3",

packages/primitives-core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @emotion/primitives-core
22

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
313
## 11.12.0
414

515
### Minor Changes

packages/primitives-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/primitives-core",
3-
"version": "11.12.0",
3+
"version": "11.13.0",
44
"description": "Shared utilities for emotion primitives and native",
55
"main": "dist/emotion-primitives-core.cjs.js",
66
"module": "dist/emotion-primitives-core.esm.js",
@@ -18,7 +18,7 @@
1818
"react": ">=16.8.0"
1919
},
2020
"devDependencies": {
21-
"@emotion/react": "11.12.0",
21+
"@emotion/react": "11.13.0",
2222
"@types/css-to-react-native": "^3.0.0",
2323
"react": "16.14.0"
2424
},

0 commit comments

Comments
 (0)