Skip to content

Commit

Permalink
[v2] Fix Travis build (#3966)
Browse files Browse the repository at this point in the history
* Fix babel build ignore glob

* Correct another glob

* Correct dependency
  • Loading branch information
KyleAMathews authored Feb 10, 2018
1 parent 59f3d49 commit db81980
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"dependencies": {
"@babel/runtime": "^7.0.0-beta.38",
"babel-plugin-remove-graphql-queries": "^2.0.0-0",
"babel-plugin-remove-graphql-queries": "^2.0.0-alpha.d1544e1b",
"ts-loader": "^2.0.3",
"typescript": "^2.2.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-remark-autolink-headers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__/**",
"watch": "babel -w src --out-dir . --ignore **/__tests__/**",
"build": "babel src --out-dir . --ignore ./**/__tests__/",
"watch": "babel -w src --out-dir . --ignore ./**/__tests__/",
"prepublish": "cross-env NODE_ENV=production npm run build"
}
}
4 changes: 2 additions & 2 deletions packages/gatsby-remark-code-repls/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__/**",
"watch": "babel -w src --out-dir . --ignore **/__tests__/**",
"build": "babel src --out-dir . --ignore ./**/__tests__/",
"watch": "babel -w src --out-dir . --ignore ./**/__tests__/",
"prepublish": "cross-env NODE_ENV=production npm run build"
}
}
4 changes: 2 additions & 2 deletions packages/gatsby-remark-embed-snippet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__/**",
"watch": "babel -w src --out-dir . --ignore **/__tests__/**",
"build": "babel src --out-dir . --ignore ./**/__tests__/",
"watch": "babel -w src --out-dir . --ignore ./**/__tests__/",
"prepublish": "cross-env NODE_ENV=production npm run build"
}
}
8 changes: 6 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
dependencies:
"@babel/plugin-syntax-numeric-separator" "7.0.0-beta.39"

"@babel/plugin-proposal-object-rest-spread@7.0.0-beta.39", "@babel/plugin-proposal-object-rest-spread@^7.0.0-beta.39":
"@babel/plugin-proposal-object-rest-spread@7.0.0-beta.39":
version "7.0.0-beta.39"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0-beta.39.tgz#ea4d6ea974a364028e5074b1abe6505924d179a3"
dependencies:
Expand Down Expand Up @@ -526,7 +526,7 @@
dependencies:
regenerator-transform "^0.12.3"

"@babel/plugin-transform-runtime@^7.0.0-beta.39":
"@babel/plugin-transform-runtime@^7.0.0-beta.38", "@babel/plugin-transform-runtime@^7.0.0-beta.39":
version "7.0.0-beta.39"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.0.0-beta.39.tgz#5769f081a36b1cd437aaa0ecb5f3ae85bd3b1255"
dependencies:
Expand Down Expand Up @@ -1504,6 +1504,10 @@ babel-plugin-react-css-modules@^3.2.1:
postcss-modules-scope "^1.0.2"
postcss-modules-values "^1.2.2"

babel-plugin-remove-graphql-queries@^2.0.0:
version "2.0.0-alpha.0"
resolved "https://registry.yarnpkg.com/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-2.0.0-alpha.0.tgz#8f982fff5b4f34262deb5458306dceca4f970ab4"

babel-plugin-syntax-async-functions@^6.8.0:
version "6.13.0"
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
Expand Down

0 comments on commit db81980

Please sign in to comment.