forked from jestjs/jest
-
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.
Build step in preparation for
flow
integration
Summary: It only strips out flow types and puts all .js files into `/build/*` directory also moved stuff around in the root directory. All build/test/setup related files now are in `./scripts/*` <img width="605" alt="screen shot 2016-06-03 at 8 18 05 pm" src="https://cloud.githubusercontent.com/assets/940133/15797324/79d4d8c2-29c8-11e6-8910-746bb6e5b92c.png"> Closes jestjs#1113 Differential Revision: D3426709 fbshipit-source-id: fe585d557d53dcce4b23af0538c861b5d1ac292e
- Loading branch information
1 parent
d7867ab
commit 1fcf231
Showing
11 changed files
with
575 additions
and
532 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ docs/ | |
**/vendor/** | ||
website/ | ||
**/coverage/** | ||
packages/*/build/** |
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
This file was deleted.
Oops, something went wrong.
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,16 +1,20 @@ | ||
{ | ||
"private": true, | ||
"devDependencies": { | ||
"babel-core": "^6.9.1", | ||
"babel-eslint": "^6.0.4", | ||
"babel-plugin-transform-flow-strip-types": "^6.8.0", | ||
"eslint": "^2.10.2", | ||
"eslint-plugin-babel": "^3.2.0", | ||
"fbjs-scripts": "^0.7.0", | ||
"glob": "^7.0.3", | ||
"lerna": "2.0.0-beta.10", | ||
"minimatch": "^3.0.0", | ||
"rimraf": "^2.4.4" | ||
}, | ||
"scripts": { | ||
"lint": "eslint .", | ||
"postinstall": "node postinstall.js", | ||
"test": "npm run lint && node ./runTests.js" | ||
"postinstall": "node ./scripts/postinstall.js", | ||
"test": "npm run lint && node ./scripts/test.js" | ||
} | ||
} |
Oops, something went wrong.