File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed
Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 1717 "blue-tape" : " ^0.2.0" ,
1818 "jspm" : " ^0.16.42" ,
1919 "onchange" : " ^2.5.0" ,
20+ "react" : " 15.3.0" ,
21+ "react-router" : " 2.6.1" ,
2022 "stream" : " 0.0.2" ,
2123 "tap-spec" : " ^4.1.1" ,
2224 "tape-run" : " ^2.1.4" ,
Original file line number Diff line number Diff line change 1+ import test = require( 'blue-tape' ) ;
2+ import target = require( 'react-router' ) ;
3+
4+ test ( 'shape' , t => {
5+ t . true ( target . applyRouterMiddleware , 'applyRouterMiddleware exists' ) ;
6+ t . end ( ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " es6" ,
4+ "module" : " commonjs" ,
5+ "jsx" : " react" ,
6+ "noEmit" : true ,
7+ "noImplicitAny" : true
8+ },
9+ "files" : [
10+ " ../typings/index.d.ts" ,
11+ " ../out/index.d.ts"
12+ ]
13+ }
You can’t perform that action at this time.
0 commit comments