forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
/lib | ||
/*.js | ||
!/bin.js | ||
/reporter | ||
yarn.lock | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env node | ||
|
||
// This file exists to fix a problem lerna has with symlinks on Windows | ||
// See https://github.com/gatsbyjs/gatsby/pull/2658 | ||
require(`./lib/index.js`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
{ | ||
"name": "gatsby-cli", | ||
"description": "Gatsby command-line interface for creating new sites and running Gatsby commands", | ||
"description": | ||
"Gatsby command-line interface for creating new sites and running Gatsby commands", | ||
"version": "1.1.15", | ||
"author": "Kyle Mathews <[email protected]>", | ||
"bin": { | ||
"gatsby": "./gatsby.js" | ||
"gatsby": "./gatsby" | ||
}, | ||
"files": [ | ||
"./gatsby.js", | ||
"lib" | ||
], | ||
"files": ["gatsby.js", "lib"], | ||
"dependencies": { | ||
"babel-code-frame": "^6.26.0", | ||
"babel-runtime": "^6.26.0", | ||
|
@@ -32,11 +30,9 @@ | |
"babel-cli": "^6.26.0", | ||
"cross-env": "^5.0.5" | ||
}, | ||
"keywords": [ | ||
"gatsby" | ||
], | ||
"keywords": ["gatsby"], | ||
"license": "MIT", | ||
"main": "bin.js", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"build": "babel src --out-dir lib --ignore __tests__", | ||
"watch": "babel -w src --out-dir lib --ignore __tests__", | ||
|