Skip to content

Commit

Permalink
Add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Nov 17, 2019
1 parent ef1a595 commit dd8cad9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changeset/weak-islands-confess.md
@@ -0,0 +1,6 @@
---
'@emotion/core': major
'emotion-theming': major
---

`emotion-theming` has been removed and all its exports were moved to `@emotion/core` package. Please import them like this `import { useTheme, ThemeProvider } from '@emotion/core' from now on`.
2 changes: 1 addition & 1 deletion packages/core/types/index.d.ts
@@ -1,5 +1,5 @@
// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
// TypeScript Version: 2.8
// TypeScript Version: 3.1

import { EmotionCache } from '@emotion/cache'
import {
Expand Down
3 changes: 3 additions & 0 deletions packages/core/types/tests-theming.tsx
@@ -1,3 +1,6 @@
// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
// TypeScript Version: 3.1

import * as React from 'react'
import {
useTheme,
Expand Down
2 changes: 2 additions & 0 deletions packages/core/types/tslint.json
Expand Up @@ -2,6 +2,7 @@
"extends": "dtslint/dtslint.json",
"rules": {
"array-type": [true, "generic"],
"callable-types": false,
"file-name-casing": false,
"import-spacing": false,
"semicolon": false,
Expand All @@ -18,6 +19,7 @@
"check-preblock"
],
"no-null-undefined-union": false,
"no-object-literal-type-assertion": false,
"no-unnecessary-generics": false
}
}

0 comments on commit dd8cad9

Please sign in to comment.