File tree Expand file tree Collapse file tree
es6-babel-react-flux-karma Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 "url" : " git+https://github.com/microsoft/typescriptsamples.git"
1515 },
1616 "keywords" : [
17- " Globalize " ,
18- " globalization " ,
19- " internationalization " ,
17+ " React " ,
18+ " Flux " ,
19+ " ES6 " ,
2020 " typescript"
2121 ],
2222 "author" : " John Reilly" ,
6565 "react-addons-test-utils" : " ^0.14.3" ,
6666 "react-dom" : " ^0.14.3" ,
6767 "ts-loader" : " ^0.8.1" ,
68- "typescript" : " ^1.6.2 " ,
68+ "typescript" : " ^1.8.0 " ,
6969 "webpack" : " ^1.12.2" ,
7070 "webpack-notifier" : " ^1.2.1"
7171 }
Original file line number Diff line number Diff line change @@ -2,6 +2,5 @@ import 'babel-polyfill';
22import * as React from 'react' ;
33import * as ReactDOM from 'react-dom' ;
44import App from './components/App' ;
5- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
65
76ReactDOM . render ( < App /> , document . getElementById ( 'content' ) ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import App from '../../src/components/App';
44import WhoToGreet from '../../src/components/WhoToGreet' ;
55import Greeting from '../../src/components/Greeting' ;
66import GreetingStore from '../../src/stores/GreetingStore' ;
7- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
87
98describe ( 'App' , ( ) => {
109 it ( 'renders expected HTML' , ( ) => {
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as React from 'react';
22import * as TestUtils from 'react-addons-test-utils' ;
33import Greeting from '../../src/components/Greeting' ;
44import * as GreetingActions from '../../src/actions/GreetingActions' ;
5- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
65
76describe ( 'Greeting' , ( ) => {
87 let handleSelectionChangeSpy : jasmine . Spy ;
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as React from 'react';
22import * as TestUtils from 'react-addons-test-utils' ;
33import WhoToGreet from '../../src/components/WhoToGreet' ;
44import * as GreetingActions from '../../src/actions/GreetingActions' ;
5- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
65
76describe ( 'WhoToGreet' , ( ) => {
87 let handleSelectionChangeSpy : jasmine . Spy ;
You can’t perform that action at this time.
0 commit comments