diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json index 470e379549c00..0cec65f56db6c 100644 --- a/packages/babel-plugin-remove-graphql-queries/package.json +++ b/packages/babel-plugin-remove-graphql-queries/package.json @@ -21,9 +21,9 @@ "graphql": "^14.1.1" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json index cb98a93f910ed..25ef42038b31c 100644 --- a/packages/babel-preset-gatsby/package.json +++ b/packages/babel-preset-gatsby/package.json @@ -29,9 +29,9 @@ "license": "MIT", "main": "index.js", "scripts": { - "build": "babel src --out-dir . --ignore **/__tests__ --ignore **/utils/path-serializer.ts --extensions \".ts,.js\"", + "build": "babel src --out-dir . --ignore \"**/__tests__\" --ignore \"**/utils/path-serializer.ts\" --extensions \".ts,.js\"", "prepare": "cross-env NODE_ENV=production npm run build", - "watch": "babel -w src --out-dir . --ignore **/__tests__ --ignore **/utils/path-serializer.ts --extensions \".ts,.js\"" + "watch": "babel -w src --out-dir . --ignore \"**/__tests__\" --ignore \"**/utils/path-serializer.ts\" --extensions \".ts,.js\"" }, "devDependencies": { "@babel/cli": "^7.8.4", diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json index 7ddc03d8329a8..2e0b810c9dd33 100644 --- a/packages/gatsby-codemods/package.json +++ b/packages/gatsby-codemods/package.json @@ -4,8 +4,8 @@ "description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json index 4ca00e1681d70..0a34cf6eddf90 100644 --- a/packages/gatsby-core-utils/package.json +++ b/packages/gatsby-core-utils/package.json @@ -16,10 +16,10 @@ "directory": "packages/gatsby-core-utils" }, "scripts": { - "build": "babel src --out-dir dist/ --ignore **/__tests__ --ignore **/__mocks__ --extensions \".ts\"", + "build": "babel src --out-dir dist/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\" --extensions \".ts\"", "typegen": "tsc --emitDeclarationOnly --declaration --declarationDir dist/", "prepare": "cross-env NODE_ENV=production npm run build && npm run typegen", - "watch": "babel -w src --out-dir dist/ --ignore **/__tests__ --extensions \".ts\"" + "watch": "babel -w src --out-dir dist/ --ignore \"**/__tests__\" --extensions \".ts\"" }, "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json index d380be4d8c0b1..539dd89dfb847 100644 --- a/packages/gatsby-cypress/package.json +++ b/packages/gatsby-cypress/package.json @@ -35,9 +35,9 @@ }, "readme": "README.md", "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json index 99a8eb1a1010e..2cfdad0a95f53 100644 --- a/packages/gatsby-graphiql-explorer/package.json +++ b/packages/gatsby-graphiql-explorer/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "build:app": "webpack --config ./src/app/webpack.config.js", - "build:babel": "babel src/index.js --out-dir . --ignore **/__tests__", + "build:babel": "babel src/index.js --out-dir . --ignore \"**/__tests__\"", "build": "npm-run-all --parallel build:app build:babel", "prepare": "cross-env NODE_ENV=production npm run build", "test": "echo \"Error: no test specified\" && exit 1", diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json index e9dc730f2c570..d24e1c86c2d56 100644 --- a/packages/gatsby-image/package.json +++ b/packages/gatsby-image/package.json @@ -32,9 +32,9 @@ "directory": "packages/gatsby-image" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index 2fd86bdca46f7..1316fe547aad4 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -36,9 +36,9 @@ "directory": "packages/gatsby-link" }, "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": { diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json index 9ad59eb1cd77a..072594e4b7441 100644 --- a/packages/gatsby-page-utils/package.json +++ b/packages/gatsby-page-utils/package.json @@ -4,8 +4,8 @@ "description": "Gatsby library that helps creating pages", "main": "dist/index.js", "scripts": { - "build": "babel src --out-dir dist/ --ignore **/__tests__", - "watch": "babel -w src --out-dir dist/ --ignore **/__tests__", + "build": "babel src --out-dir dist/ --ignore \"**/__tests__\"", + "watch": "babel -w src --out-dir dist/ --ignore \"**/__tests__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json index 98273453a7f02..cf282ba124003 100644 --- a/packages/gatsby-plugin-benchmark-reporting/package.json +++ b/packages/gatsby-plugin-benchmark-reporting/package.json @@ -22,9 +22,9 @@ "uuid": "^3.4.0" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json index 59c15a15f8f43..b394f4ddb873b 100644 --- a/packages/gatsby-plugin-canonical-urls/package.json +++ b/packages/gatsby-plugin-canonical-urls/package.json @@ -31,9 +31,9 @@ "directory": "packages/gatsby-plugin-canonical-urls" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json index 371422f15021a..d5fc032d557c4 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -32,9 +32,9 @@ "directory": "packages/gatsby-plugin-catch-links" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json index 238243f591a76..d5020a58fb313 100644 --- a/packages/gatsby-plugin-coffeescript/package.json +++ b/packages/gatsby-plugin-coffeescript/package.json @@ -39,9 +39,9 @@ "directory": "packages/gatsby-plugin-coffeescript" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-create-client-paths/package.json b/packages/gatsby-plugin-create-client-paths/package.json index a895e80ec0b6e..de741a58e6ee3 100644 --- a/packages/gatsby-plugin-create-client-paths/package.json +++ b/packages/gatsby-plugin-create-client-paths/package.json @@ -31,9 +31,9 @@ "directory": "packages/gatsby-plugin-create-client-paths" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index 86fc72bfee355..e2f618259f018 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-plugin-cxs" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json index 580ba83a06817..0d2502c5c64e4 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -36,9 +36,9 @@ "directory": "packages/gatsby-plugin-emotion" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json index ad8923302ea5e..2e8e52049206b 100644 --- a/packages/gatsby-plugin-facebook-analytics/package.json +++ b/packages/gatsby-plugin-facebook-analytics/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-facebook-analytics" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index df841281ac0ca..7fc60ab6c557e 100644 --- a/packages/gatsby-plugin-feed/package.json +++ b/packages/gatsby-plugin-feed/package.json @@ -38,9 +38,9 @@ "directory": "packages/gatsby-plugin-feed" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json index e93b6394f1d61..341838cbeb711 100644 --- a/packages/gatsby-plugin-flow/package.json +++ b/packages/gatsby-plugin-flow/package.json @@ -4,8 +4,8 @@ "description": "Provides drop-in support for Flow by adding @babel/preset-flow.", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json index 55855af082567..623296ee98a34 100644 --- a/packages/gatsby-plugin-fullstory/package.json +++ b/packages/gatsby-plugin-fullstory/package.json @@ -4,8 +4,8 @@ "description": "Plugin to add the tracking code for Fullstory.com", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json index cf432d6639db1..6bd6917e7a844 100644 --- a/packages/gatsby-plugin-glamor/package.json +++ b/packages/gatsby-plugin-glamor/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-glamor" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json index cc8b3cb31c85b..c87722304c741 100644 --- a/packages/gatsby-plugin-google-analytics/package.json +++ b/packages/gatsby-plugin-google-analytics/package.json @@ -36,9 +36,9 @@ "directory": "packages/gatsby-plugin-google-analytics" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json index cc38651f2dbc0..a286d0f128002 100644 --- a/packages/gatsby-plugin-google-gtag/package.json +++ b/packages/gatsby-plugin-google-gtag/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-plugin-google-gtag" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json index df777804ba136..fc696a8ca8139 100644 --- a/packages/gatsby-plugin-google-tagmanager/package.json +++ b/packages/gatsby-plugin-google-tagmanager/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-google-tagmanager" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-guess-js/package.json b/packages/gatsby-plugin-guess-js/package.json index c1d48839faa06..684598a84eb24 100644 --- a/packages/gatsby-plugin-guess-js/package.json +++ b/packages/gatsby-plugin-guess-js/package.json @@ -4,8 +4,8 @@ "description": "Gatsby plugin providing drop-in integration with Guess.js to enabling using machine learning and analytics data to power prefetching", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json index 9d1692b71fb99..0b55485ca760b 100644 --- a/packages/gatsby-plugin-jss/package.json +++ b/packages/gatsby-plugin-jss/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-jss" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json index 8f6c58ec7d2a3..986e829a31faa 100644 --- a/packages/gatsby-plugin-layout/package.json +++ b/packages/gatsby-plugin-layout/package.json @@ -4,8 +4,8 @@ "description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json index 9c503128b4d1f..6953c681b3449 100644 --- a/packages/gatsby-plugin-less/package.json +++ b/packages/gatsby-plugin-less/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-plugin-less" }, "scripts": { - "build": "babel src --out-dir . --ignore **/__tests__,theme-test.js", + "build": "babel src --out-dir . --ignore \"**/__tests__,theme-test.js\"", "prepare": "cross-env NODE_ENV=production npm run build", - "watch": "babel -w src --out-dir . --ignore **/__tests__,theme-test.js" + "watch": "babel -w src --out-dir . --ignore \"**/__tests__,theme-test.js\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json index 5a44ab513332b..fe2573e1761e4 100644 --- a/packages/gatsby-plugin-lodash/package.json +++ b/packages/gatsby-plugin-lodash/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-lodash" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index f54abea5f6a13..48340bf07347a 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -39,9 +39,9 @@ "directory": "packages/gatsby-plugin-manifest" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json index 734184da5d885..087d8fcd1cdfa 100644 --- a/packages/gatsby-plugin-netlify-cms/package.json +++ b/packages/gatsby-plugin-netlify-cms/package.json @@ -47,9 +47,9 @@ "directory": "packages/gatsby-plugin-netlify-cms" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-netlify/package.json b/packages/gatsby-plugin-netlify/package.json index 5324f4ddfaa3d..63adffe727f7b 100644 --- a/packages/gatsby-plugin-netlify/package.json +++ b/packages/gatsby-plugin-netlify/package.json @@ -43,9 +43,9 @@ "directory": "packages/gatsby-plugin-netlify" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json index f2b52a7d43e63..d73d5e397a63f 100644 --- a/packages/gatsby-plugin-nprogress/package.json +++ b/packages/gatsby-plugin-nprogress/package.json @@ -32,9 +32,9 @@ "directory": "packages/gatsby-plugin-nprogress" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index 225b0ea03cdad..cf64ebcd20f1d 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -43,7 +43,7 @@ }, "scripts": { "build": "npm run build:src && npm run build:sw-append", - "build:src": "babel src --out-dir . --ignore **/__tests__,src/sw-append.js", + "build:src": "babel src --out-dir . --ignore \"**/__tests__,src/sw-append.js\"", "build:sw-append": "cpx -v src/sw-append.js .", "prepare": "cross-env NODE_ENV=production npm run build", "watch": "npm run build:sw-append -- --watch & npm run build:src -- --watch" diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json index 8783b97e7976e..68ba5e9d20bce 100644 --- a/packages/gatsby-plugin-page-creator/package.json +++ b/packages/gatsby-plugin-page-creator/package.json @@ -4,8 +4,8 @@ "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json index af74f80e4b21c..6478e7d9eb0cc 100644 --- a/packages/gatsby-plugin-postcss/package.json +++ b/packages/gatsby-plugin-postcss/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-plugin-postcss" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json index 002a98ba84a2c..500819f8001c9 100644 --- a/packages/gatsby-plugin-preact/package.json +++ b/packages/gatsby-plugin-preact/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-preact" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json index 13f26f9598e4a..540f3fddc56d9 100644 --- a/packages/gatsby-plugin-preload-fonts/package.json +++ b/packages/gatsby-plugin-preload-fonts/package.json @@ -43,9 +43,9 @@ "directory": "packages/gatsby-plugin-preload-fonts" }, "scripts": { - "build": "babel src --out-dir . --ignore **/__tests__ --ignore **/__mocks__", + "build": "babel src --out-dir . --ignore \"**/__tests__\" --ignore **/__mocks__", "prepare": "cross-env NODE_ENV=production npm run build", - "watch": "babel -w src --out-dir . --ignore **/__tests__ --ignore **/__mocks__", + "watch": "babel -w src --out-dir . --ignore \"**/__tests__\" --ignore **/__mocks__", "clean": "rm -rf index.js prepare" } } diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json index 2cae58a8081d8..74c0d6064900d 100644 --- a/packages/gatsby-plugin-react-css-modules/package.json +++ b/packages/gatsby-plugin-react-css-modules/package.json @@ -40,9 +40,9 @@ "directory": "packages/gatsby-plugin-react-css-modules" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json index b1bd1015a72a4..cc4cca95d3b31 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -44,9 +44,9 @@ "directory": "packages/gatsby-plugin-react-helmet" }, "scripts": { - "build": "babel src --out-dir . --ignore **/__tests__,**/__mocks__", + "build": "babel src --out-dir . --ignore \"**/__tests__\",**/__mocks__", "prepare": "cross-env NODE_ENV=production npm run build", - "watch": "babel -w src --out-dir . --ignore **/__tests__,**/__mocks__" + "watch": "babel -w src --out-dir . --ignore \"**/__tests__\",**/__mocks__" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-remove-trailing-slashes/package.json b/packages/gatsby-plugin-remove-trailing-slashes/package.json index 438875cc9360c..a9dbebb3e0774 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/package.json +++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json @@ -31,9 +31,9 @@ "directory": "packages/gatsby-plugin-remove-trailing-slashes" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 3b44f06c88cbb..7c98fc0d86ccd 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -36,9 +36,9 @@ "directory": "packages/gatsby-plugin-sass" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 4ac03112f8769..295bb8cad5c94 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -51,9 +51,9 @@ "directory": "packages/gatsby-plugin-sharp" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index 67fd656b2f1b5..c5965d858d6a0 100644 --- a/packages/gatsby-plugin-sitemap/package.json +++ b/packages/gatsby-plugin-sitemap/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-plugin-sitemap" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json index 669f68b78f889..62b456bbe8d03 100644 --- a/packages/gatsby-plugin-styled-components/package.json +++ b/packages/gatsby-plugin-styled-components/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-plugin-styled-components" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json index 4615f4370aba9..5ebbcea61aad6 100644 --- a/packages/gatsby-plugin-styled-jsx/package.json +++ b/packages/gatsby-plugin-styled-jsx/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-styled-jsx" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json index 0bacec63f235f..b4f0519ed86b8 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-plugin-styletron" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json index 97ee0ac674bb3..3687d7c7c52fb 100644 --- a/packages/gatsby-plugin-stylus/package.json +++ b/packages/gatsby-plugin-stylus/package.json @@ -35,9 +35,9 @@ "directory": "packages/gatsby-plugin-stylus" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json index 8f457d9566bf8..2bd3a924432af 100644 --- a/packages/gatsby-plugin-subfont/package.json +++ b/packages/gatsby-plugin-subfont/package.json @@ -4,8 +4,8 @@ "description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index 3b07d3200be1e..22123922b145a 100644 --- a/packages/gatsby-plugin-twitter/package.json +++ b/packages/gatsby-plugin-twitter/package.json @@ -31,9 +31,9 @@ "directory": "packages/gatsby-plugin-twitter" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 74d9983e25a04..795122f1c263b 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -41,9 +41,9 @@ "directory": "packages/gatsby-plugin-typescript" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json index 37cb46692cfac..8edaade67efa7 100644 --- a/packages/gatsby-plugin-typography/package.json +++ b/packages/gatsby-plugin-typography/package.json @@ -41,9 +41,9 @@ "directory": "packages/gatsby-plugin-typography" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json index 65a41b8c3d082..3d1ae569fcb65 100644 --- a/packages/gatsby-react-router-scroll/package.json +++ b/packages/gatsby-react-router-scroll/package.json @@ -36,9 +36,9 @@ "directory": "packages/gatsby-react-router-scroll" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json index 06e349a42004b..e4ed8326c6e5c 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -36,9 +36,9 @@ "directory": "packages/gatsby-remark-autolink-headers" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json index 713b329542a99..d2336fcd5bc0d 100644 --- a/packages/gatsby-remark-code-repls/package.json +++ b/packages/gatsby-remark-code-repls/package.json @@ -41,9 +41,9 @@ "directory": "packages/gatsby-remark-code-repls" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json index f66ba4dced68d..f9223301af1f4 100644 --- a/packages/gatsby-remark-copy-linked-files/package.json +++ b/packages/gatsby-remark-copy-linked-files/package.json @@ -42,9 +42,9 @@ "directory": "packages/gatsby-remark-copy-linked-files" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json index eef962bca6aad..b0b09a5bb62eb 100644 --- a/packages/gatsby-remark-custom-blocks/package.json +++ b/packages/gatsby-remark-custom-blocks/package.json @@ -41,9 +41,9 @@ "directory": "packages/gatsby-remark-custom-blocks" }, "scripts": { - "build": "babel --out-dir . --ignore **/__tests__ src", + "build": "babel --out-dir . --ignore \"**/__tests__\" src", "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json index 92c6e8dd84a06..3937bef89b909 100644 --- a/packages/gatsby-remark-embed-snippet/package.json +++ b/packages/gatsby-remark-embed-snippet/package.json @@ -37,9 +37,9 @@ "directory": "packages/gatsby-remark-embed-snippet" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json index 0b52a77a1016e..db77d46855043 100644 --- a/packages/gatsby-remark-graphviz/package.json +++ b/packages/gatsby-remark-graphviz/package.json @@ -45,9 +45,9 @@ "directory": "packages/gatsby-remark-graphviz" }, "scripts": { - "build": "babel --out-dir . src --ignore **/__tests__", + "build": "babel --out-dir . src --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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json index 5176039e80c9f..1e878f4e44c8b 100644 --- a/packages/gatsby-remark-images-contentful/package.json +++ b/packages/gatsby-remark-images-contentful/package.json @@ -4,9 +4,9 @@ "description": "Process Images in Contentful markdown so they can use the images API.", "main": "index.js", "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__\"" }, "repository": { "type": "git", diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index 770c03098a4d7..a8b11cb688e7a 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -48,9 +48,9 @@ "directory": "packages/gatsby-remark-images" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json index a94749add851a..8c4d272b1ff11 100644 --- a/packages/gatsby-remark-katex/package.json +++ b/packages/gatsby-remark-katex/package.json @@ -37,9 +37,9 @@ "directory": "packages/gatsby-remark-katex" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json index fcb12a0c9d8e9..40d64f1b9d923 100644 --- a/packages/gatsby-remark-prismjs/package.json +++ b/packages/gatsby-remark-prismjs/package.json @@ -38,9 +38,9 @@ "directory": "packages/gatsby-remark-prismjs" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json index f815d62c26112..6b895ee74d71b 100644 --- a/packages/gatsby-remark-responsive-iframe/package.json +++ b/packages/gatsby-remark-responsive-iframe/package.json @@ -39,9 +39,9 @@ "directory": "packages/gatsby-remark-responsive-iframe" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json index b5827d8efde8e..fc979a93694c4 100644 --- a/packages/gatsby-remark-smartypants/package.json +++ b/packages/gatsby-remark-smartypants/package.json @@ -35,9 +35,9 @@ "directory": "packages/gatsby-remark-smartypants" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 866c38cc7769f..46693d8ab23e4 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -47,9 +47,9 @@ "directory": "packages/gatsby-source-contentful" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 34fd8076a1c14..319c38d173376 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -37,9 +37,9 @@ "directory": "packages/gatsby-source-drupal" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json index f34b7569ea099..1176fd20ccab2 100644 --- a/packages/gatsby-source-faker/package.json +++ b/packages/gatsby-source-faker/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-source-faker" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index 3cc4825401363..e39f1915b9759 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -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": { diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json index 8e54b76c63529..133c5dccd52ab 100644 --- a/packages/gatsby-source-graphql/package.json +++ b/packages/gatsby-source-graphql/package.json @@ -38,9 +38,9 @@ "directory": "packages/gatsby-source-graphql" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json index 5950c0dc98eb1..4d91d82da41ba 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-source-hacker-news" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json index 2f46579719a97..adcce27b53864 100644 --- a/packages/gatsby-source-lever/package.json +++ b/packages/gatsby-source-lever/package.json @@ -39,9 +39,9 @@ "directory": "packages/gatsby-source-lever" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json index c4ae3e46f7999..5c3f2d0160f6d 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -32,9 +32,9 @@ "directory": "packages/gatsby-source-medium" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json index ade3ab200b4b8..ca748783f01ea 100644 --- a/packages/gatsby-source-mongodb/package.json +++ b/packages/gatsby-source-mongodb/package.json @@ -38,9 +38,9 @@ "directory": "packages/gatsby-source-mongodb" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json index 12cda9aa184fb..008061741a1e3 100644 --- a/packages/gatsby-source-npm-package-search/package.json +++ b/packages/gatsby-source-npm-package-search/package.json @@ -30,9 +30,9 @@ "gatsby": "^2.0.15" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index 964b82c143783..fa31ecb94b843 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -3,7 +3,7 @@ "version": "3.1.3", "description": "Gatsby source plugin for building websites using Shopfiy as a data source.", "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": "npm run build -- --watch" }, diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json index 2a3be9b38518b..0ce7b9fdb7530 100644 --- a/packages/gatsby-source-wikipedia/package.json +++ b/packages/gatsby-source-wikipedia/package.json @@ -4,8 +4,8 @@ "description": "Gatsby source plugin for pulling articles from Wikipedia", "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__\"", "prepare": "cross-env NODE_ENV=production npm run build" }, "keywords": [ diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index e7e0b28430609..19db5e39a5b22 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -43,9 +43,9 @@ "directory": "packages/gatsby-source-wordpress" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json index 48d05eb95ff66..1ba38c0e9fe51 100644 --- a/packages/gatsby-transformer-asciidoc/package.json +++ b/packages/gatsby-transformer-asciidoc/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-transformer-asciidoc" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json index d45f912e8cea2..a8963f6909c00 100644 --- a/packages/gatsby-transformer-csv/package.json +++ b/packages/gatsby-transformer-csv/package.json @@ -35,9 +35,9 @@ "directory": "packages/gatsby-transformer-csv" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index f87de12c4b0a8..04730f8766bed 100644 --- a/packages/gatsby-transformer-documentationjs/package.json +++ b/packages/gatsby-transformer-documentationjs/package.json @@ -35,9 +35,9 @@ "directory": "packages/gatsby-transformer-documentationjs" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json index eaceded0b3910..ee8c585395cfe 100644 --- a/packages/gatsby-transformer-excel/package.json +++ b/packages/gatsby-transformer-excel/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-transformer-excel" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json index 1234bd25c1d80..164ddb5182884 100644 --- a/packages/gatsby-transformer-hjson/package.json +++ b/packages/gatsby-transformer-hjson/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-transformer-hjson" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json index 53e6df273745b..f2ba15824aa92 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/package.json +++ b/packages/gatsby-transformer-javascript-frontmatter/package.json @@ -32,9 +32,9 @@ "directory": "packages/gatsby-transformer-javascript-frontmatter" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json index 4dde1b2fa74d9..ff5fafbf27425 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/packages/gatsby-transformer-javascript-static-exports/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-transformer-javascript-static-exports" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json index f990d4cdc2a37..9a71f2e186a2e 100644 --- a/packages/gatsby-transformer-json/package.json +++ b/packages/gatsby-transformer-json/package.json @@ -32,9 +32,9 @@ "directory": "packages/gatsby-transformer-json" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json index dc3daaf6488c3..f08cc64c5962c 100644 --- a/packages/gatsby-transformer-pdf/package.json +++ b/packages/gatsby-transformer-pdf/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-transformer-pdf" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json index 8c17e9e4926a6..2c15ed7566f7a 100644 --- a/packages/gatsby-transformer-react-docgen/package.json +++ b/packages/gatsby-transformer-react-docgen/package.json @@ -39,9 +39,9 @@ "directory": "packages/gatsby-transformer-react-docgen" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index 2219b7bdd4774..8093da723f594 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -52,9 +52,9 @@ "directory": "packages/gatsby-transformer-remark" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json index 06ae631622dbd..46df823a8b362 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -33,11 +33,11 @@ "directory": "packages/gatsby-transformer-screenshot" }, "scripts": { - "build": "babel src --out-dir . --ignore **/__tests__ --ignore lambda", + "build": "babel src --out-dir . --ignore \"**/__tests__\" --ignore lambda", "build-lambda-package": "npm run prepare-lambda-package && cd lambda-dist && zip -rq ../lambda-package.zip .", "prepare-lambda-package": "rm -rf lambda-dist && mkdir lambda-dist && cp lambda/package.json lambda-dist/package.json && cp lambda/screenshot.js lambda-dist/screenshot.js && cp lambda/index.js lambda-dist/index.js && cd lambda-dist && npm install --production", "prepare": "cross-env NODE_ENV=production npm run build", - "watch": "babel -w src --out-dir . --ignore **/__tests__ --ignore lambda" + "watch": "babel -w src --out-dir . --ignore \"**/__tests__\" --ignore lambda" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index c0c7765af9cb0..8b2713d69b4ef 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -39,9 +39,9 @@ "directory": "packages/gatsby-transformer-sharp" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json index aa88d00231482..db5795173c6fa 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -43,9 +43,9 @@ "directory": "packages/gatsby-transformer-sqip" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json index 084949d666640..d59e7036cc6ef 100644 --- a/packages/gatsby-transformer-toml/package.json +++ b/packages/gatsby-transformer-toml/package.json @@ -33,9 +33,9 @@ "directory": "packages/gatsby-transformer-toml" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json index 47a2a823fdf19..a18a32ade3423 100644 --- a/packages/gatsby-transformer-xml/package.json +++ b/packages/gatsby-transformer-xml/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-transformer-xml" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json index f71b02f02891c..2f02452bdf116 100644 --- a/packages/gatsby-transformer-yaml/package.json +++ b/packages/gatsby-transformer-yaml/package.json @@ -34,9 +34,9 @@ "directory": "packages/gatsby-transformer-yaml" }, "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__\"" }, "engines": { "node": ">=10.13.0" diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index e8d2ba14dd5e2..e01c4434c6152 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -207,8 +207,8 @@ "postbuild": "node scripts/output-api-file.js", "build:internal-plugins": "copyfiles -u 1 src/internal-plugins/**/package.json dist", "build:rawfiles": "copyfiles -u 1 src/internal-plugins/**/raw_* dist", - "build:cjs": "babel cache-dir --out-dir cache-dir/commonjs --ignore **/__tests__", - "build:src": "babel src --out-dir dist --source-maps --verbose --ignore **/gatsby-cli.js,src/internal-plugins/dev-404-page/raw_dev-404-page.js,**/__tests__ --extensions \".ts,.js\"", + "build:cjs": "babel cache-dir --out-dir cache-dir/commonjs --ignore \"**/__tests__\"", + "build:src": "babel src --out-dir dist --source-maps --verbose --ignore \"**/gatsby-cli.js,src/internal-plugins/dev-404-page/raw_dev-404-page.js,**/__tests__\" --extensions \".ts,.js\"", "clean-test-bundles": "find test/ -type f -name bundle.js* -exec rm -rf {} +", "prebuild": "rimraf dist && rimraf cache-dir/commonjs", "postinstall": "node scripts/postinstall.js",