@emotion/server
Advanced tools
Comparing version 11.0.0-rc.0 to 11.0.0
# @emotion/server | ||
## 11.0.0 | ||
### Major Changes | ||
- [`b8476e08`](https://github.com/emotion-js/emotion/commit/b8476e08af4a2e8de94a112cb0daf6e8e4d56fe1) [#1675](https://github.com/emotion-js/emotion/pull/1675) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Rename `emotion-server` to `@emotion/server`. Please change any imports of `emotion-server` to import `@emotion/server` or use the `@emotion/pkg-renaming` ESLint rule from `@emotion/eslint-plugin`. | ||
* [`b8476e08`](https://github.com/emotion-js/emotion/commit/b8476e08af4a2e8de94a112cb0daf6e8e4d56fe1) [#1675](https://github.com/emotion-js/emotion/pull/1675) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Move `create-emotion-server` to `@emotion/server/create-instance`. Please change any imports of `create-emotion-server` to import `@emotion/server/create-instance` or use the `@emotion/pkg-renaming` ESLint rule from `@emotion/eslint-plugin`. | ||
* [`105de5c8`](https://github.com/emotion-js/emotion/commit/105de5c8752be0983c000e1e26462dc8fcf0708d) [#1572](https://github.com/emotion-js/emotion/pull/1572) Thanks [@Andarist](https://github.com/Andarist)! - `[data-emotion]` attribute on SSRed styled has changed. You should never rely on it though. | ||
### Patch Changes | ||
- Updated dependencies [[`debaad9a`](https://github.com/emotion-js/emotion/commit/debaad9ab4bd6c80312092826d9146f3d29c0899), [`9e998e37`](https://github.com/emotion-js/emotion/commit/9e998e3755c217027ad1be0af4c64644fe14c6bf)]: | ||
- @emotion/utils@1.0.0 | ||
## 11.0.0-rc.0 | ||
@@ -76,5 +91,5 @@ | ||
- [`b8476e08`](https://github.com/emotion-js/emotion/commit/b8476e08af4a2e8de94a112cb0daf6e8e4d56fe1) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Rename `emotion-server` to `@emotion/server`. Please change any imports of `emotion-server` to import `@emotion/server` or use the `@emotion/pkg-renaming` ESLint rule from `@emotion/eslint-plugin`. | ||
- [`b8476e08`](https://github.com/emotion-js/emotion/commit/b8476e08af4a2e8de94a112cb0daf6e8e4d56fe1) [#1675](https://github.com/emotion-js/emotion/pull/1675) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Rename `emotion-server` to `@emotion/server`. Please change any imports of `emotion-server` to import `@emotion/server` or use the `@emotion/pkg-renaming` ESLint rule from `@emotion/eslint-plugin`. | ||
* [`b8476e08`](https://github.com/emotion-js/emotion/commit/b8476e08af4a2e8de94a112cb0daf6e8e4d56fe1) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Move `create-emotion-server` to `@emotion/server/create-instance`. Please change any imports of `create-emotion-server` to import `@emotion/server/create-instance` or use the `@emotion/pkg-renaming` ESLint rule from `@emotion/eslint-plugin`. | ||
* [`b8476e08`](https://github.com/emotion-js/emotion/commit/b8476e08af4a2e8de94a112cb0daf6e8e4d56fe1) [#1675](https://github.com/emotion-js/emotion/pull/1675) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Move `create-emotion-server` to `@emotion/server/create-instance`. Please change any imports of `create-emotion-server` to import `@emotion/server/create-instance` or use the `@emotion/pkg-renaming` ESLint rule from `@emotion/eslint-plugin`. | ||
@@ -81,0 +96,0 @@ ### Patch Changes |
{ | ||
"main": "dist/server.cjs.js", | ||
"main": "dist/emotion-server-create-instance.cjs.js", | ||
"browser": { | ||
"./dist/server.cjs.js": "./dist/server.browser.cjs.js" | ||
"./dist/emotion-server-create-instance.cjs.js": "./dist/emotion-server-create-instance.browser.cjs.js" | ||
}, | ||
"types": "../types/create-instance", | ||
"preconstruct": { | ||
"source": "../src/create-instance" | ||
} | ||
"types": "../types/create-instance" | ||
} |
{ | ||
"name": "@emotion/server", | ||
"version": "11.0.0-rc.0", | ||
"version": "11.0.0", | ||
"description": "Extract and inline critical css with emotion for server side rendering.", | ||
"main": "dist/server.cjs.js", | ||
"main": "dist/emotion-server.cjs.js", | ||
"types": "types/index.d.ts", | ||
@@ -17,3 +17,3 @@ "files": [ | ||
"dependencies": { | ||
"@emotion/utils": "^1.0.0-rc.0", | ||
"@emotion/utils": "^1.0.0", | ||
"html-tokenize": "^2.0.0", | ||
@@ -32,5 +32,5 @@ "multipipe": "^1.0.2", | ||
"devDependencies": { | ||
"@emotion/babel-plugin": "11.0.0-rc.0", | ||
"@emotion/css": "11.0.0-rc.0", | ||
"@emotion/css-prettifier": "1.0.0-next.0", | ||
"@emotion/babel-plugin": "11.0.0", | ||
"@emotion/css": "11.0.0", | ||
"@emotion/css-prettifier": "1.0.0", | ||
"@types/node": "^10.11.4", | ||
@@ -56,10 +56,10 @@ "dtslint": "^0.3.0" | ||
"browser": { | ||
"./dist/server.cjs.js": "./dist/server.browser.cjs.js" | ||
"./dist/emotion-server.cjs.js": "./dist/emotion-server.browser.cjs.js" | ||
}, | ||
"preconstruct": { | ||
"entrypoints": [ | ||
".", | ||
"create-instance" | ||
"./index.js", | ||
"./create-instance/index.js" | ||
] | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
33952
0
1
Updated@emotion/utils@^1.0.0