From 788dd77f560f047bd8f6641c4e6c3f2f8f320566 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Sat, 1 Jul 2017 23:42:48 -0700 Subject: [PATCH] v1.0.0-beta.6 --- lerna.json | 6 ++++-- packages/gatsby-dev-cli/package.json | 6 ++++-- packages/gatsby-link/package.json | 7 +++++-- packages/gatsby-plugin-aphrodite/package.json | 6 ++++-- packages/gatsby-plugin-canonical-urls/package.json | 2 +- packages/gatsby-plugin-catch-links/package.json | 7 +++++-- packages/gatsby-plugin-coffeescript/package.json | 11 ++++++++--- packages/gatsby-plugin-cxs/package.json | 6 ++++-- packages/gatsby-plugin-feed/package.json | 10 ++++++++-- packages/gatsby-plugin-glamor/package.json | 8 ++++++-- packages/gatsby-plugin-glamorous/package.json | 6 ++++-- packages/gatsby-plugin-google-analytics/package.json | 8 ++++++-- packages/gatsby-plugin-jss/package.json | 6 ++++-- packages/gatsby-plugin-less/package.json | 6 ++++-- packages/gatsby-plugin-manifest/package.json | 2 +- packages/gatsby-plugin-nprogress/package.json | 6 ++++-- packages/gatsby-plugin-postcss-sass/package.json | 10 ++++++++-- packages/gatsby-plugin-preact/package.json | 8 ++++++-- packages/gatsby-plugin-react-helmet/package.json | 6 ++++-- packages/gatsby-plugin-sass/package.json | 8 ++++++-- packages/gatsby-plugin-sharp/package.json | 8 ++++++-- packages/gatsby-plugin-sitemap/package.json | 6 ++++-- packages/gatsby-plugin-styled-components/package.json | 8 ++++++-- packages/gatsby-plugin-styled-jsx/package.json | 6 ++++-- packages/gatsby-plugin-styletron/package.json | 6 ++++-- packages/gatsby-plugin-stylus/package.json | 6 ++++-- packages/gatsby-plugin-typescript/package.json | 11 ++++++++--- packages/gatsby-remark-autolink-headers/package.json | 8 ++++++-- packages/gatsby-remark-copy-linked-files/package.json | 9 +++++++-- packages/gatsby-remark-images/package.json | 2 +- packages/gatsby-remark-prismjs/package.json | 9 +++++++-- packages/gatsby-remark-responsive-iframe/package.json | 8 ++++++-- packages/gatsby-remark-smartypants/package.json | 8 ++++++-- packages/gatsby-source-contentful/package.json | 2 +- packages/gatsby-source-drupal/package.json | 8 ++++++-- packages/gatsby-source-filesystem/package.json | 7 +++++-- packages/gatsby-source-hacker-news/package.json | 8 ++++++-- packages/gatsby-source-wordpress-com/package.json | 6 ++++-- packages/gatsby-transformer-csv/package.json | 6 ++++-- .../gatsby-transformer-documentationjs/package.json | 2 +- packages/gatsby-transformer-docx/package.json | 6 ++++-- .../package.json | 2 +- packages/gatsby-transformer-json/package.json | 8 ++++++-- packages/gatsby-transformer-pdf/package.json | 6 ++++-- packages/gatsby-transformer-pdfimages/package.json | 9 +++++++-- packages/gatsby-transformer-react-docgen/package.json | 9 +++++++-- packages/gatsby-transformer-remark/package.json | 9 +++++++-- packages/gatsby-transformer-sharp/package.json | 9 +++++++-- packages/gatsby-transformer-xml/package.json | 6 ++++-- packages/gatsby-transformer-yaml/package.json | 8 ++++++-- packages/gatsby/package.json | 4 ++-- packages/graphql-skip-limit/package.json | 7 +++++-- 52 files changed, 252 insertions(+), 100 deletions(-) diff --git a/lerna.json b/lerna.json index d34fb76194c8c..6bb0876842ca8 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,9 @@ { "lerna": "2.0.0-rc.5", "npmClient": "npm", - "packages": ["packages/*"], + "packages": [ + "packages/*" + ], "hoist": true, - "version": "1.0.0-beta.5" + "version": "1.0.0-beta.6" } diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json index 3a2d987388c5f..4c1d9bd8809ae 100644 --- a/packages/gatsby-dev-cli/package.json +++ b/packages/gatsby-dev-cli/package.json @@ -9,7 +9,7 @@ "yargs": "^8.0.1" }, "name": "gatsby-dev-cli", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "CLI helpers for contributors working on Gatsby", "main": "index.js", "devDependencies": { @@ -23,7 +23,9 @@ "build": "babel src --out-dir dist --presets es2015", "watch": "babel -w src --out-dir dist --presets es2015" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews ", "license": "MIT" } diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index 9105a6b894258..6dfea633fd9d4 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-link", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", "main": "index.js", "types": "index.d.ts", @@ -8,7 +8,10 @@ "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-component"], + "keywords": [ + "gatsby", + "gatsby-component" + ], "author": "Kyle Mathews ", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-aphrodite/package.json b/packages/gatsby-plugin-aphrodite/package.json index d4ded11de5f76..8d57776e5a5b7 100644 --- a/packages/gatsby-plugin-aphrodite/package.json +++ b/packages/gatsby-plugin-aphrodite/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-aphrodite", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-aphrodite", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json index 6193b1975643f..76f0af5485788 100644 --- a/packages/gatsby-plugin-canonical-urls/package.json +++ b/packages/gatsby-plugin-canonical-urls/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-canonical-urls", - "version": "", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-canonical-urls", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json index c553b1fe9e6ac..c7649b2791304 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -1,13 +1,16 @@ { "name": "gatsby-plugin-catch-links", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.", "main": "index.js", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin"], + "keywords": [ + "gatsby", + "gatsby-plugin" + ], "author": "Kyle Mathews ", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json index bd486ce901bdd..ad212301f3b4c 100644 --- a/packages/gatsby-plugin-coffeescript/package.json +++ b/packages/gatsby-plugin-coffeescript/package.json @@ -1,9 +1,11 @@ { "name": "gatsby-plugin-coffeescript", "description": "Adds CoffeeScript support for Gatsby layouts and pages.", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", - "contributors": ["Noah Lange "], + "contributors": [ + "Noah Lange " + ], "dependencies": { "coffee-react-transform": "^5.0.0", "coffeescript": "next" @@ -11,7 +13,10 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "coffeescript"], + "keywords": [ + "gatsby", + "coffeescript" + ], "license": "MIT", "main": "index.js", "readme": "README.md", diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index 5b163994aa81e..cda2aeceab803 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-cxs", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-cxs", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index e43687f644cc2..1325f10b98b57 100644 --- a/packages/gatsby-plugin-feed/package.json +++ b/packages/gatsby-plugin-feed/package.json @@ -1,13 +1,19 @@ { "name": "gatsby-plugin-feed", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Creates an RSS feed for your Gatsby site.", "main": "index.js", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin", "rss", "atom", "feed"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "rss", + "atom", + "feed" + ], "author": "Nicholas Young ", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json index fe0e64f4a5ef1..2b62df213228c 100644 --- a/packages/gatsby-plugin-glamor/package.json +++ b/packages/gatsby-plugin-glamor/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-glamor", "description": "Gatsby plugin to add support for Glamor", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "dependencies": { "babel-plugin-glamor": "^3.0.0-1", @@ -13,7 +13,11 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "gatsby-plugin", "glamor"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "glamor" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-glamorous/package.json b/packages/gatsby-plugin-glamorous/package.json index ac25f33df487e..be4570b00972f 100644 --- a/packages/gatsby-plugin-glamorous/package.json +++ b/packages/gatsby-plugin-glamorous/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-glamorous", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-glamorous", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json index ec11017f0f999..13620a9ee743c 100644 --- a/packages/gatsby-plugin-google-analytics/package.json +++ b/packages/gatsby-plugin-google-analytics/package.json @@ -1,12 +1,16 @@ { "name": "gatsby-plugin-google-analytics", "description": "Gatsby plugin to add google analytics onto a site", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "gatsby-plugin", "google analytics"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "google analytics" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json index d9d41e38fa1c5..9915e182eb128 100644 --- a/packages/gatsby-plugin-jss/package.json +++ b/packages/gatsby-plugin-jss/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-jss", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-jss", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json index 842adacee69c4..a6a5f60cc34d0 100644 --- a/packages/gatsby-plugin-less/package.json +++ b/packages/gatsby-plugin-less/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-less", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-less", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index 7342525cf3c80..98d5a946afbd2 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-manifest", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby plugin which adds a manifest.json to make sites progressive web apps", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json index 6261515c1e080..5eb798c86db66 100644 --- a/packages/gatsby-plugin-nprogress/package.json +++ b/packages/gatsby-plugin-nprogress/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-nprogress", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Shows page loading indicator when loading page resources is delayed", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-postcss-sass/package.json b/packages/gatsby-plugin-postcss-sass/package.json index 4a59f9ccba905..62423c511e68e 100644 --- a/packages/gatsby-plugin-postcss-sass/package.json +++ b/packages/gatsby-plugin-postcss-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-postcss-sass", "description": "Gatsby plugin to handle scss/sass files with integrated support for also processing with Postcss plugins", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Scotty Eckenthal ", "dependencies": { "extract-text-webpack-plugin": "^1.0.1", @@ -11,7 +11,13 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "gatsby-plugin", "postcss", "sass", "scss"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "postcss", + "sass", + "scss" + ], "license": "MIT", "main": "index.js", "readme": "README.md", diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json index 0475f9f253cb3..d1d4eaf4ca8f6 100644 --- a/packages/gatsby-plugin-preact/package.json +++ b/packages/gatsby-plugin-preact/package.json @@ -1,13 +1,17 @@ { "name": "gatsby-plugin-preact", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "A Gatsby plugin which replaces React with Preact", "main": "index.js", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin", "preact"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "preact" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json index 79728e38d3461..3c81a4c8c7814 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-react-helmet", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-react-helmet", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 0a9fe1e8692bd..3de9221258536 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sass", "description": "Gatsby plugin to handle scss/sass files", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Daniel Farrell ", "dependencies": { "extract-text-webpack-plugin": "^1.0.1", @@ -12,7 +12,11 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "sass", "scss"], + "keywords": [ + "gatsby", + "sass", + "scss" + ], "license": "MIT", "main": "index.js", "readme": "README.md", diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 592ca9d827dcf..34bce57347039 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "dependencies": { "async": "^2.4.1", @@ -16,7 +16,11 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "image", "sharp"], + "keywords": [ + "gatsby", + "image", + "sharp" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index 5f6bfd8b4229e..3f42e8c0af53c 100644 --- a/packages/gatsby-plugin-sitemap/package.json +++ b/packages/gatsby-plugin-sitemap/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-sitemap", - "version": "1.0.0-beta.3", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-sitemap", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Nicholas Young <nicholas@nicholaswyoung.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json index 7d76ef44681b5..7847a41c1bc64 100644 --- a/packages/gatsby-plugin-styled-components/package.json +++ b/packages/gatsby-plugin-styled-components/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-components", "description": "Gatsby plugin to add support for styled components", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Guten Ye ", "dependencies": { "styled-components": "^2.0.0" @@ -9,7 +9,11 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "gatsby-plugin", "styled-components"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "styled-components" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json index 1f1b4c7eac12d..2bad719a88588 100644 --- a/packages/gatsby-plugin-styled-jsx/package.json +++ b/packages/gatsby-plugin-styled-jsx/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-styled-jsx", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-styled-jsx", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json index faf4f921cd5f0..e5fe3a967fe17 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-styletron", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-styletron", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json index 6316476401cc4..077878817d59d 100644 --- a/packages/gatsby-plugin-stylus/package.json +++ b/packages/gatsby-plugin-stylus/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-plugin-stylus", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-plugin-stylus", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 1f5499bcfef40..47321991e1464 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,9 +1,11 @@ { "name": "gatsby-plugin-typescript", - "version": "1.0.0-beta.3", + "version": "1.0.0-beta.6", "description": "Adds TypeScript support for Gatsby layouts and pages.", "author": "Kyle Mathews ", - "contributors": ["Noah Lange "], + "contributors": [ + "Noah Lange " + ], "dependencies": { "ts-loader": "^2.0.3", "typescript": "^2.2.1" @@ -11,7 +13,10 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "typescript"], + "keywords": [ + "gatsby", + "typescript" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json index 0b08fbe8a8662..67d65ef90b1d7 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-autolink-headers", "description": "Gatsby plugin to autolink headers in markdown processed by Remark", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "dependencies": { "github-slugger": "^1.1.1", @@ -11,7 +11,11 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "gatsby-plugin", "remark"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "remark" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json index 0345b2ff0afd6..b9aef28fe121d 100644 --- a/packages/gatsby-remark-copy-linked-files/package.json +++ b/packages/gatsby-remark-copy-linked-files/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-copy-linked-files", "description": "Find files which are linked to from markdown and copy them to the public directory", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "dependencies": { "cheerio": "^1.0.0-rc.1", @@ -13,7 +13,12 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "gatsby-plugin", "prismjs", "remark"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "prismjs", + "remark" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index a90df9e98233f..c78d91d3e3020 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-remark-images", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "description": "Processes images in markdown so they can be used in the production build.", "main": "index.js", "keywords": [ diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json index 2648f2db2b3f5..a12e75d9b3339 100644 --- a/packages/gatsby-remark-prismjs/package.json +++ b/packages/gatsby-remark-prismjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-prismjs", "description": "Adds syntax highlighting to code blocks at build time using PrismJS", - "version": "1.0.0-beta.3", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "dependencies": { "parse-numeric-range": "^0.0.2", @@ -11,7 +11,12 @@ "devDependencies": { "babel-cli": "^6.24.1" }, - "keywords": ["gatsby", "gatsby-plugin", "prismjs", "remark"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "prismjs", + "remark" + ], "license": "MIT", "main": "index.js", "scripts": { diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json index c33271e6d4fd1..0ee9e6261df8b 100644 --- a/packages/gatsby-remark-responsive-iframe/package.json +++ b/packages/gatsby-remark-responsive-iframe/package.json @@ -1,13 +1,17 @@ { "name": "gatsby-remark-responsive-iframe", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Make iframes in Markdown processed by Remark responsive", "main": "index.js", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin", "remark"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "remark" + ], "author": "Kyle Mathews ", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json index 6744ea7e8132d..98a921e3616dc 100644 --- a/packages/gatsby-remark-smartypants/package.json +++ b/packages/gatsby-remark-smartypants/package.json @@ -1,13 +1,17 @@ { "name": "gatsby-remark-smartypants", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "description": "Use retext-smartypants to auto-enhance typography of markdown", "main": "index.js", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin", "smartypants"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "smartypants" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 6e514a35fa6c3..ac50d2a6b3cbc 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-contentful", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", "scripts": { "build": "babel src --out-dir . --ignore __tests__", diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index e10858d028deb..d394a30838213 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,12 +1,16 @@ { "name": "gatsby-source-drupal", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin", "gatsby-source-plugin"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "gatsby-source-plugin" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index ac06cc03cfe89..320f20478dd4d 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,12 +1,15 @@ { "name": "gatsby-source-filesystem", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "description": "Gatsby plugin which parses files within a directory for further parsing by other plugins", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin"], + "keywords": [ + "gatsby", + "gatsby-plugin" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json index 1cb2ea754cee6..e210b1710b21d 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -1,12 +1,16 @@ { "name": "gatsby-source-hacker-news", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby source plugin for building websites using Hacker News as a data source", "scripts": { "build": "babel src --out-dir .", "watch": "babel -w src --out-dir ." }, - "keywords": ["gatsby", "gatsby-plugin", "gatsby-source-plugin"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "gatsby-source-plugin" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-source-wordpress-com/package.json b/packages/gatsby-source-wordpress-com/package.json index 959d6571b402e..7c9612cf91ae7 100644 --- a/packages/gatsby-source-wordpress-com/package.json +++ b/packages/gatsby-source-wordpress-com/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-source-wordpress-com", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-source-wordpress-com", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json index 577feb3d1a0cc..15bbb916d41e1 100644 --- a/packages/gatsby-transformer-csv/package.json +++ b/packages/gatsby-transformer-csv/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-transformer-csv", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-transformer-csv", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index fb1818df430c7..61e60ae8fdcd6 100644 --- a/packages/gatsby-transformer-documentationjs/package.json +++ b/packages/gatsby-transformer-documentationjs/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-transformer-documentationjs", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby transformer plugin which uses Documentation.js to extract JavaScript documentation", "main": "index.js", "scripts": { diff --git a/packages/gatsby-transformer-docx/package.json b/packages/gatsby-transformer-docx/package.json index 87ee51a005399..96a783da73180 100644 --- a/packages/gatsby-transformer-docx/package.json +++ b/packages/gatsby-transformer-docx/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-transformer-docx", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-transformer-docx", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json index cbd2d6916f922..60343f4d6dbe1 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/packages/gatsby-transformer-javascript-static-exports/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-transformer-javascript-static-exports", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby transformer plugin for JavaScript to extract exports.data statically.", "scripts": { "build": "babel src --out-dir . --ignore __tests__", diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json index a0b04d89e59d0..960fb43420f5b 100644 --- a/packages/gatsby-transformer-json/package.json +++ b/packages/gatsby-transformer-json/package.json @@ -1,12 +1,16 @@ { "name": "gatsby-transformer-json", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby transformer plugin for JSON files", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby", "gatsby-plugin", "json"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "json" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json index 60152063aa073..f5712abbf711d 100644 --- a/packages/gatsby-transformer-pdf/package.json +++ b/packages/gatsby-transformer-pdf/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-transformer-pdf", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-transformer-pdf", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-transformer-pdfimages/package.json b/packages/gatsby-transformer-pdfimages/package.json index c9b9bd9413742..15caca0013fd4 100644 --- a/packages/gatsby-transformer-pdfimages/package.json +++ b/packages/gatsby-transformer-pdfimages/package.json @@ -1,12 +1,17 @@ { "name": "gatsby-transformer-pdfimages", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby transformer plugin for extracting images from PDFs", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, - "keywords": ["gatsby", "gatsby-plugin", "gatsby-transformer", "pdfimage"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "gatsby-transformer", + "pdfimage" + ], "author": "Kyle Mathews ", "license": "MIT" } diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json index c78cc31a59d8d..09fa6eb10bda6 100644 --- a/packages/gatsby-transformer-react-docgen/package.json +++ b/packages/gatsby-transformer-react-docgen/package.json @@ -1,13 +1,18 @@ { "name": "gatsby-transformer-react-docgen", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.6", "description": "Expose React component metadata and prop information as GraphQL types", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby", "gatsby-plugin", "react", "react-docgen"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "react", + "react-docgen" + ], "author": "Jason Quense ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index 9588603f6b407..fde410a8df1f1 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-remark", "description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "dependencies": { "bluebird": "^3.5.0", @@ -19,7 +19,12 @@ "babel-cli": "^6.24.1", "babel-plugin-transform-object-rest-spread": "^6.20.2" }, - "keywords": ["gatsby", "gatsby-plugin", "markdown", "remark"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "markdown", + "remark" + ], "license": "MIT", "scripts": { "build": "babel src --out-dir . --ignore __tests__", diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 7eae3c80d9acc..3e5034a2878d8 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,12 +1,17 @@ { "name": "gatsby-transformer-sharp", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby transformer plugin for images using Sharp", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby", "gatsby-plugin", "sharp", "image"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "sharp", + "image" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json index 9c95df856baa6..6aaef95080736 100644 --- a/packages/gatsby-transformer-xml/package.json +++ b/packages/gatsby-transformer-xml/package.json @@ -1,13 +1,15 @@ { "name": "gatsby-transformer-xml", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Stub description for gatsby-transformer-xml", "main": "index.js", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby"], + "keywords": [ + "gatsby" + ], "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", "devDependencies": { diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json index d475c48bfde2b..e87bacdf26f9e 100644 --- a/packages/gatsby-transformer-yaml/package.json +++ b/packages/gatsby-transformer-yaml/package.json @@ -1,12 +1,16 @@ { "name": "gatsby-transformer-yaml", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.6", "description": "Gatsby transformer plugin for yaml", "scripts": { "build": "babel src --out-dir . --ignore __tests__", "watch": "babel -w src --out-dir . --ignore __tests__" }, - "keywords": ["gatsby", "gatsby-plugin", "yaml"], + "keywords": [ + "gatsby", + "gatsby-plugin", + "yaml" + ], "author": "Kyle Mathews ", "license": "MIT", "dependencies": { diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index fabec615a3187..eea1664ca212e 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "React.js Static Site Generator", - "version": "1.0.0-beta.5", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "bin": { "gatsby": "./dist/gatsby-cli.js" @@ -46,7 +46,7 @@ "glob": "^7.1.1", "graphql": "^0.10.3", "graphql-relay": "^0.5.1", - "graphql-skip-limit": "^1.0.0-beta.5", + "graphql-skip-limit": "^1.0.0-beta.6", "gray-matter": "^2.1.0", "hapi": "^8.5.1", "history": "^4.6.2", diff --git a/packages/graphql-skip-limit/package.json b/packages/graphql-skip-limit/package.json index 087a88bdc3885..f668d74bce53e 100644 --- a/packages/graphql-skip-limit/package.json +++ b/packages/graphql-skip-limit/package.json @@ -1,13 +1,16 @@ { "name": "graphql-skip-limit", "description": "A library to help construct a graphql-js server supporting skip/relay style pagination. Built for Gatsby but perhaps useful elsewhere.", - "version": "1.0.0-beta.5", + "version": "1.0.0-beta.6", "author": "Kyle Mathews ", "devDependencies": { "babel-cli": "^6.24.1", "graphql": "^0.10.3" }, - "keywords": ["gatsby", "graphql"], + "keywords": [ + "gatsby", + "graphql" + ], "license": "MIT", "main": "dist/index.js", "scripts": {