Skip to content

Commit

Permalink
fix: graphiql babel test ignore paths
Browse files Browse the repository at this point in the history
  • Loading branch information
acao committed Dec 9, 2019
1 parent 6b091a7 commit e1588d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/graphiql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"analyze-bundle": "cross-env NODE_ENV=production CDN=1 ANALYZE=1 yarn webpack -p",
"build": "yarn build-clean && yarn build-cjs && yarn build-esm && yarn build-flow",
"build-clean": "rimraf esm dist",
"build-cjs": "babel src --ignore __tests__ --out-dir dist/",
"build-esm": "cross-env ESM=1 babel src --ignore __tests__ --out-dir esm/",
"build-cjs": "babel src --ignore '**/__tests__/**,**/__mocks__/**,*.spec.*' --out-dir dist/",
"build-esm": "cross-env ESM=1 babel src --ignore '**/__tests__/**,**/__mocks__/**,*.spec.*' --out-dir esm/",
"build-bundles": "yarn build-bundles-clean && yarn build-bundles-dev && yarn build-bundles-min",
"build-bundles-dev": "cross-env NODE_ENV=development CDN=1 yarn webpack -d --bail",
"build-bundles-min": "cross-env NODE_ENV=production CDN=1 yarn webpack -p --bail",
Expand Down

0 comments on commit e1588d9

Please sign in to comment.