Skip to content

Commit bde9500

Browse files
authored
refactor!: migrate from styled components to emotion
BREAKING CHANGE: migrate from styled components to emotion
1 parent 30a9b80 commit bde9500

18 files changed

+184
-165
lines changed

Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ pipeline {
132132
anyOf {
133133
branch 'release'
134134
branch 'devel'
135+
branch 'beta'
135136
}
136137
}
137138
steps {

babel.config.jest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
module.exports = {
77
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-typescript'],
88
plugins: [
9+
'@emotion',
910
'@babel/plugin-transform-runtime',
1011
'@babel/plugin-proposal-class-properties',
11-
'babel-plugin-styled-components',
1212
'babel-plugin-transform-import-meta'
1313
]
1414
};

babel.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
module.exports = {
77
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-typescript'],
88
plugins: [
9+
'@emotion',
910
'@babel/plugin-transform-runtime',
10-
'@babel/plugin-proposal-class-properties',
11-
'babel-plugin-styled-components'
11+
'@babel/plugin-proposal-class-properties'
1212
]
1313
};

0 commit comments

Comments
 (0)