Skip to content

Commit

Permalink
fix: wrap ignore pattern in quotes (gatsbyjs#23176)
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts committed Apr 16, 2020
1 parent ac711a8 commit f5506f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"directory": "packages/gatsby-source-filesystem"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"build": "babel src --out-dir . --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\""
},
"types": "index.d.ts",
"engines": {
Expand Down

0 comments on commit f5506f2

Please sign in to comment.