Skip to content

Commit

Permalink
fix: ensure that linaria plugin to run first
Browse files Browse the repository at this point in the history
fixes #333
  • Loading branch information
satya164 committed Mar 7, 2019
1 parent 1023974 commit ed50208
Show file tree
Hide file tree
Showing 13 changed files with 618 additions and 559 deletions.
5 changes: 2 additions & 3 deletions package.json
Expand Up @@ -38,9 +38,8 @@
"typescript": "dtslint",
"test": "jest",
"add-contributor": "all-contributors add",
"prebuild": "del lib",
"build": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps && flow-copy-source -i '{**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**}' src lib",
"watch": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps --watch",
"build": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps --delete-dir-on-start && flow-copy-source -i '{**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**}' src lib",
"watch": "babel src --out-dir lib --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps --delete-dir-on-start --watch",
"prepare": "yarn build",
"release": "release-it",
"website": "yarn --cwd website",
Expand Down
2 changes: 1 addition & 1 deletion src/babel/evaluate.js
@@ -1,6 +1,6 @@
/* @flow */

import type { Options as PluginOptions } from './extract';
import type { Options as PluginOptions } from './types';

const generator = require('@babel/generator').default;
const babel = require('@babel/core');
Expand Down

0 comments on commit ed50208

Please sign in to comment.