Skip to content

Commit 86e6854

Browse files
committed
Add keyframes to tags by default
1 parent 614c682 commit 86e6854

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

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

3+
# 0.17.0 - May 05, 2021
4+
- Apply in `keyframes` by default.
5+
36
# 0.16.0 - April 28, 2021
47
- Pick up new language service version. Thanks @hantatsang and @jasonwilliams!
58

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Then reload your project to make sure the plugin has been loaded properly. Note
126126
## Configuration
127127

128128
### Tags
129-
This plugin adds styled component IntelliSense to any template literal [tagged](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) with `styled`, `css`, `injectGlobal` or `createGlobalStyle`:
129+
This plugin adds styled component IntelliSense to any template literal [tagged](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) with `styled`, `css`, `injectGlobal`, `keyframes` or `createGlobalStyle`:
130130

131131
```js
132132
import styled from 'styled-components'

src/_configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface StyledPluginConfiguration {
1111
export class ConfigurationManager {
1212

1313
private static readonly defaultConfiguration: StyledPluginConfiguration = {
14-
tags: ['styled', 'css', 'extend', 'injectGlobal', 'createGlobalStyle'],
14+
tags: ['styled', 'css', 'extend', 'injectGlobal', 'createGlobalStyle', 'keyframes'],
1515
validate: true,
1616
lint: {
1717
emptyRules: 'ignore',

0 commit comments

Comments
 (0)