Skip to content

Commit

Permalink
FIX circular dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Mar 2, 2019
1 parent d351d87 commit 4be2657
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .babelrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
'@babel/plugin-syntax-dynamic-import',
['@babel/plugin-proposal-object-rest-spread', { loose: true, useBuiltIns: true }],
'babel-plugin-macros',
['babel-plugin-emotion', { sourceMap: true, autoLabel: true }],
['emotion', { sourceMap: true, autoLabel: true }],
],
env: {
test: {
Expand Down Expand Up @@ -65,7 +65,7 @@ module.exports = {
],
],
plugins: [
'babel-plugin-emotion',
'emotion',
'babel-plugin-macros',
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
Expand Down
2 changes: 1 addition & 1 deletion app/angular/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"compileOnSave": false,
"compilerOptions": {
"rootDir": "./src",
"types": ["webpack-env"],
"types": ["webpack-env", "jest"],
"outDir": "./dist",
"resolveJsonModule": true
}
Expand Down
2 changes: 0 additions & 2 deletions lib/theming/src/animation.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { css, keyframes } from '@emotion/core';
import { color } from './base';

export const easing = {
rubber: 'cubic-bezier(0.175, 0.885, 0.335, 1.05)',
Expand Down Expand Up @@ -34,7 +33,6 @@ const jiggle = keyframes`

const inlineGlow = css`
animation: ${glow} 1.5s ease-in-out infinite;
background: ${color.border};
color: transparent;
cursor: progress;
`;
Expand Down

1 comment on commit 4be2657

@vercel
Copy link

@vercel vercel bot commented on 4be2657 Mar 2, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment failed with the following error:

Builds rate limit exceeded (0 of 100 remaining). Try again in 21h

Please sign in to comment.