Skip to content

Commit

Permalink
v1.0.0-beta.6
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Jul 2, 2017
1 parent 0faa52c commit 788dd77
Show file tree
Hide file tree
Showing 52 changed files with 252 additions and 100 deletions.
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -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"
}
6 changes: 4 additions & 2 deletions packages/gatsby-dev-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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 <[email protected]>",
"license": "MIT"
}
7 changes: 5 additions & 2 deletions packages/gatsby-link/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"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",
"scripts": {
"build": "babel src --out-dir .",
"watch": "babel -w src --out-dir ."
},
"keywords": ["gatsby", "gatsby-component"],
"keywords": [
"gatsby",
"gatsby-component"
],
"author": "Kyle Mathews <[email protected]>",
"license": "MIT",
"devDependencies": {
Expand Down
6 changes: 4 additions & 2 deletions packages/gatsby-plugin-aphrodite/package.json
Original file line number Diff line number Diff line change
@@ -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 &lt;[email protected]&gt;",
"license": "MIT",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-canonical-urls/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
7 changes: 5 additions & 2 deletions packages/gatsby-plugin-catch-links/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "MIT",
"devDependencies": {
Expand Down
11 changes: 8 additions & 3 deletions packages/gatsby-plugin-coffeescript/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{
"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 <[email protected]>",
"contributors": ["Noah Lange <[email protected]>"],
"contributors": [
"Noah Lange <[email protected]>"
],
"dependencies": {
"coffee-react-transform": "^5.0.0",
"coffeescript": "next"
},
"devDependencies": {
"babel-cli": "^6.24.1"
},
"keywords": ["gatsby", "coffeescript"],
"keywords": [
"gatsby",
"coffeescript"
],
"license": "MIT",
"main": "index.js",
"readme": "README.md",
Expand Down
6 changes: 4 additions & 2 deletions packages/gatsby-plugin-cxs/package.json
Original file line number Diff line number Diff line change
@@ -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 &lt;[email protected]&gt;",
"license": "MIT",
"devDependencies": {
Expand Down
10 changes: 8 additions & 2 deletions packages/gatsby-plugin-feed/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "MIT",
"devDependencies": {
Expand Down
8 changes: 6 additions & 2 deletions packages/gatsby-plugin-glamor/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"dependencies": {
"babel-plugin-glamor": "^3.0.0-1",
Expand All @@ -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": {
Expand Down
6 changes: 4 additions & 2 deletions packages/gatsby-plugin-glamorous/package.json
Original file line number Diff line number Diff line change
@@ -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 &lt;[email protected]&gt;",
"license": "MIT",
"devDependencies": {
Expand Down
8 changes: 6 additions & 2 deletions packages/gatsby-plugin-google-analytics/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"devDependencies": {
"babel-cli": "^6.24.1"
},
"keywords": ["gatsby", "gatsby-plugin", "google analytics"],
"keywords": [
"gatsby",
"gatsby-plugin",
"google analytics"
],
"license": "MIT",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions packages/gatsby-plugin-jss/package.json
Original file line number Diff line number Diff line change
@@ -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 &lt;[email protected]&gt;",
"license": "MIT",
"devDependencies": {
Expand Down
6 changes: 4 additions & 2 deletions packages/gatsby-plugin-less/package.json
Original file line number Diff line number Diff line change
@@ -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 &lt;[email protected]&gt;",
"license": "MIT",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-manifest/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 4 additions & 2 deletions packages/gatsby-plugin-nprogress/package.json
Original file line number Diff line number Diff line change
@@ -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<[email protected]>",
"license": "MIT",
"devDependencies": {
Expand Down
10 changes: 8 additions & 2 deletions packages/gatsby-plugin-postcss-sass/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"dependencies": {
"extract-text-webpack-plugin": "^1.0.1",
Expand All @@ -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",
Expand Down
8 changes: 6 additions & 2 deletions packages/gatsby-plugin-preact/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "MIT",
"dependencies": {
Expand Down
6 changes: 4 additions & 2 deletions packages/gatsby-plugin-react-helmet/package.json
Original file line number Diff line number Diff line change
@@ -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 &lt;[email protected]&gt;",
"license": "MIT",
"devDependencies": {
Expand Down
8 changes: 6 additions & 2 deletions packages/gatsby-plugin-sass/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"dependencies": {
"extract-text-webpack-plugin": "^1.0.1",
Expand All @@ -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",
Expand Down
8 changes: 6 additions & 2 deletions packages/gatsby-plugin-sharp/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"dependencies": {
"async": "^2.4.1",
Expand All @@ -16,7 +16,11 @@
"devDependencies": {
"babel-cli": "^6.24.1"
},
"keywords": ["gatsby", "image", "sharp"],
"keywords": [
"gatsby",
"image",
"sharp"
],
"license": "MIT",
"main": "index.js",
"scripts": {
Expand Down
Loading

0 comments on commit 788dd77

Please sign in to comment.