This repository was archived by the owner on Oct 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +4
-8
lines changed
es6-babel-react-flux-karma Expand file tree Collapse file tree 5 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 14
14
"url" : " git+https://github.com/microsoft/typescriptsamples.git"
15
15
},
16
16
"keywords" : [
17
- " Globalize " ,
18
- " globalization " ,
19
- " internationalization " ,
17
+ " React " ,
18
+ " Flux " ,
19
+ " ES6 " ,
20
20
" typescript"
21
21
],
22
22
"author" : " John Reilly" ,
65
65
"react-addons-test-utils" : " ^0.14.3" ,
66
66
"react-dom" : " ^0.14.3" ,
67
67
"ts-loader" : " ^0.8.1" ,
68
- "typescript" : " ^1.6.2 " ,
68
+ "typescript" : " ^1.8.0 " ,
69
69
"webpack" : " ^1.12.2" ,
70
70
"webpack-notifier" : " ^1.2.1"
71
71
}
Original file line number Diff line number Diff line change @@ -2,6 +2,5 @@ import 'babel-polyfill';
2
2
import * as React from 'react' ;
3
3
import * as ReactDOM from 'react-dom' ;
4
4
import App from './components/App' ;
5
- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
6
5
7
6
ReactDOM . 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';
4
4
import WhoToGreet from '../../src/components/WhoToGreet' ;
5
5
import Greeting from '../../src/components/Greeting' ;
6
6
import GreetingStore from '../../src/stores/GreetingStore' ;
7
- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
8
7
9
8
describe ( 'App' , ( ) => {
10
9
it ( 'renders expected HTML' , ( ) => {
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as React from 'react';
2
2
import * as TestUtils from 'react-addons-test-utils' ;
3
3
import Greeting from '../../src/components/Greeting' ;
4
4
import * as GreetingActions from '../../src/actions/GreetingActions' ;
5
- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
6
5
7
6
describe ( 'Greeting' , ( ) => {
8
7
let handleSelectionChangeSpy : jasmine . Spy ;
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as React from 'react';
2
2
import * as TestUtils from 'react-addons-test-utils' ;
3
3
import WhoToGreet from '../../src/components/WhoToGreet' ;
4
4
import * as GreetingActions from '../../src/actions/GreetingActions' ;
5
- React ; // use React as an expression to prevent React being purged from dependencies as not used directly
6
5
7
6
describe ( 'WhoToGreet' , ( ) => {
8
7
let handleSelectionChangeSpy : jasmine . Spy ;
You can’t perform that action at this time.
0 commit comments