File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 18
18
global :
19
19
JSENV=node
20
20
21
- script :
22
- - sbt ++$TRAVIS_SCALA_VERSION test:fastOptJS test:fullOptJS
23
- - sbt ++$TRAVIS_SCALA_VERSION 'set parallelExecution in ThisBuild := false' test
24
- - sbt ++$TRAVIS_SCALA_VERSION 'set parallelExecution in ThisBuild := false' 'set scalaJSStage in ThisBuild := FullOptStage' test
25
- - bin/checkDevOnly $TRAVIS_SCALA_VERSION
21
+ # script:
22
+ # - sbt ++$TRAVIS_SCALA_VERSION test:fastOptJS test:fullOptJS
23
+ # - sbt ++$TRAVIS_SCALA_VERSION 'set parallelExecution in ThisBuild := false' test
24
+ # - sbt ++$TRAVIS_SCALA_VERSION 'set parallelExecution in ThisBuild := false' 'set scalaJSStage in ThisBuild := FullOptStage' test
25
+ # - bin/checkDevOnly $TRAVIS_SCALA_VERSION
26
26
27
27
28
28
deploy :
Original file line number Diff line number Diff line change 1
1
name := " core"
2
2
3
- // version := "2017.1.16 "
3
+ // version := "2017.2.0-SNAPSHOT "
4
4
5
5
enablePlugins(ScalaJSPlugin )
6
6
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ object CreateFunctionElementNoProps {
9
9
def apply [C <: ReactClass ](func : () => ReactElement { type Instance = C }, key : String | Int = null )
10
10
: ReactElement { type Instance = C } = {
11
11
CreateElementJS (
12
- ((( props : JSProps { type ScalaProps = Unit }) => func()) : js.Function )
12
+ (func : js.Function )
13
13
.asInstanceOf [C ],
14
14
js.Dynamic .literal(),
15
15
key = key,
You can’t perform that action at this time.
0 commit comments