Skip to content

Commit 331bca5

Browse files
committed
test deployment
1 parent b187af6 commit 331bca5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ env:
1818
global:
1919
JSENV=node
2020

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
2626

2727

2828
deploy:

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "core"
22

3-
//version := "2017.1.16"
3+
//version := "2017.2.0-SNAPSHOT"
44

55
enablePlugins(ScalaJSPlugin)
66

src/main/scala/sri/core/CreateFunctionElementNoProps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ object CreateFunctionElementNoProps {
99
def apply[C <: ReactClass](func: () => ReactElement { type Instance = C }, key: String | Int = null)
1010
: ReactElement { type Instance = C } = {
1111
CreateElementJS(
12-
(((props: JSProps { type ScalaProps = Unit }) => func()): js.Function)
12+
(func: js.Function)
1313
.asInstanceOf[C],
1414
js.Dynamic.literal(),
1515
key = key,

0 commit comments

Comments
 (0)