Giter Club home page Giter Club logo

outwatch's Introduction

Outwatch

The Functional and Reactive Web-Frontend Library for Scala.js

Typelevel incubator codecov Discord outwatch Scala version support

import outwatch._
import outwatch.dsl._
import colibri._
import cats.effect.{IO, IOApp}

object Main extends IOApp.Simple {
  override def run = {
    val counter = Subject.behavior(0)
    val myComponent = div(
      button("+", onClick(counter.map(_ + 1)) --> counter),
      counter,
    )

    Outwatch.renderReplace[IO]("#app", myComponent)
  }
}

In Outwatch, you can describe your whole web application without doing any side effect - you only run your application when rendering it.

  • Write UI-components using pure functions
  • Manage state in a referentially transparent way using cats-effect
  • Built-in lightweight Observable and Subject types from colibri
  • Seamlessly works with existing reactive programming libraries: ZIO, fs2, Airstream, scala.rx
  • Low-boilerplate, many convenient helper functions
  • Built on top of snabbdom, a virtual dom library

You will find interactive examples and explanations in our documentation.

Bugs and Feedback

For bugs, questions and discussions please use GitHub Issues.

Community

We adopted the Scala Code of Conduct. People are expected to follow it when discussing Outwatch on the Github page, Gitter channel, or other venues.

LICENSE

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

outwatch's People

Contributors

ahjohannessen avatar armanbilge avatar asakaev avatar busti avatar cornerman avatar fdietze avatar flowi avatar guizmaii avatar jponte avatar kadekm avatar keynmol avatar lukajcb avatar mariusmuja avatar perwiklander avatar scala-steward avatar thsoft avatar zakpatterson avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

outwatch's Issues

Creating Emitters for Thirdparty Events.

I was trying to add drag and drop functionality with Sortable.js (the scala.js facade).

There I like to bind the onEnd event to my redux store, something like this:

override val onEnd: UndefOr[js.Function1[EventS, Unit]] = (event) => {

       store <-- Observable.from(Seq(ReduxAction(event)))

}

This works only the first time (only after the first drop - the redux reducer is called).

Is there a correct way of emitting these actions?

Need to be able to sink to DOM Object properties, not only attributes

Properties and attributes of elements can go out of sync.

  val checkToggler: Observable[Boolean] = ???
  val checkToggled: Sink[Boolean] = ???
  input(tpe := "checkbox", checked <-- checkToggler, inputChecked --> checkToggled)

repro:

  1. click on the checkbox
  2. send a message to checkToggler
  3. observe checked dis/appearing on the DOM attribute when checkToggler is sent
  4. observe the value of the checked property on the input

inputChecked emits events using the value of the checked property on the element; manual user toggling only modifies the element property as well.

plain fiddle reproduction http://jsfiddle.net/mxzL2/9/

Snabbdom patching issue

I came across an issue while trying to build a router for outwatch. In some cases when a "page" was replaced with itself (but different initial state), the observable updates on the new page would not work.

I tracked the issue to the fact that Snabbdom patching does an update (and not a destroy/insert) which results in outwatch not subscribing to the new observables, since the subscription in done in the insert hook.

Adding the key property didn't fix the issue, it revealed a second bug caused by outwatch not passing the key to the DataObject constructed by DataObject.updateAttributes.

I fixed these issues on my branch, PR to follow.

The snippet below shows the issue, going from page 1 -> 3 or 3 ->1 breaks the counter updates, but all other transitions (1->2, 3->2,...) work as expected:

  def page(num: Int): VNode = {
    val clicks = createHandler[Int]()
    val sum = clicks.startWith(num)
      .scan(0)(_ + _)

    div(
      num match {
        case 1 =>
          div(child <-- sum)
        case 2 =>
          textarea(child <-- sum)
        case 3 =>
          div(child <-- sum)
      },
      div(
        button(click(1) --> clicks, "+1")
      )
    )
  }

  def root() : VNode = {

    val pageHandler = createHandler[Int](1)

    div(
      button(click(1) --> pageHandler, "Page 1"),
      button(click(2) --> pageHandler, "Page 2"),
      button(click(3) --> pageHandler, "Page 3"),
      div(child <-- pageHandler.map(page))
    )
  }

  def main(): Unit = {
    OutWatch.render("#app", root())
  }

Integrate cats

Currently there is no integration to cats or Scalaz, resulting in some parts of the code base not being referentially transparent. We should discuss what adopting cats means for the usability as well as other concerns like bundle size or performance.

Make API referentially transparent

Kind of related to #28. Currently part of the API as well as part of the internals aren't referentially transparent. We could rewrite the createHandler signatures to include some kind of effect managing monad and then use for comprehensions for syntactic sugar. Here's an example:

Current Api:

def personComponent(labelText: String, texts: Sink[String]) = {
  val firstNames = createStringHandler("")
  val lastNames = createStringHandler("")

  val fullNames = firstNames
    .combineLatestWith(lastNames)((first, last) => s"$first $last")

  div(
    label(labelText),
    input(inputString --> firstNames),
    input(inputString --> lastNames),
    button(click (fullNames) --> texts, "Submit")
  )
}

Referentially transparent:

def personComponent(labelText: String, texts: Sink[String]) = for {
  firstNames <- createStringHandler("")
  lastNames <- createStringHandler("")

  fullNames = firstNames
    .combineLatestWith(lastNames)((first, last) => s"$first $last")

  root <- div(
    label(labelText),
    input(inputString --> firstNames),
    input(inputString --> lastNames),
    button(click (fullNames) --> texts, "Submit")
  )

} yield root

The rest of the API could probably stay the same, or atleast with minimal changes. Components without handlers should be completely backwards compatible (albeit not binary compatible). Eager to know what you guys think.

Provide separate streams for input.value and onChange

Currently there is inputString which is triggered by onChange and provides the current value of the input field:

val text = createStringHandler()
val setText = createStringHandler()

input(
  inputString --> text,
  value <-- setText,
)
button(
  click("newText") --> setText
)

It is important to note, that clicking the button does not trigger inputString and therefore the stream text does not trigger at all. If text is used in a composition like someStream.withLatestFrom(text) the resulting stream does not contain the current value visible in the input field. This may not be intuitive.

I therefore propose two different streams to make this obvious:

  • changeString: triggered by user via onchange and contains the current value - this is exactly the behavior of the current inputString
  • value: triggered by onchange AND value. This is guaranteed to always contain the current value. No matter where it comes from.

Types of attributes

When I looked into the Attributes definition, I found that most of the corresponding AttributeBuilder are defined with type Any. Is there a reason for this?

Examples

This should be of Type String:

  /** This attribute contains a text representing advisory information related to
    * the element it belongs too. Such information can typically, but not
    * necessarily, be presented to the user as a tooltip.
    *
    * MDN
    */
  lazy val title            = new AttributeBuilder[Any]("title")

This is an enumeration with values in yes|no|"" (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/translate). Should we just translate it as boolean? Or should we even have an ADT for these kind of enumerations? At least it should be String, right? We could also do something similar to what scalatags does.

  /** Specifies whether the content of an element should be translated or not. */
  lazy val translate        = new AttributeBuilder[Any]("translate") //

Related: #20

Optional elements and attributes

This would make it easier to include an element or not depending on if an Option (or js.UndefOr) is defined or not (taken from scalajs-react).
This would work with implicit conversion, like StringNode today.

case class User(
  profileUrl: String,
  favColor: Option[String]
)

val loggedInUser: Option[User] = ???

div(
  h3("Welcome"),
  loggedInUser.map(user =>
    a(
      href := user.profileUrl,
      style := user.favColor.map(c => s"background-color: $c")
      "My Profile"
    )
  )
)

Tags and Attributes namespace

Importing all the tags and attributes into the global namespace can be the cause of confusing error messages and IDE refactoring issues.

I suggest using the same approach as in the scalajs-react vdom, by putting the tags into a < namespace and the attributes into a ^ namespace, while offering the option of importing everything into the global namespace if the user wants to.

List displaying strings does not update correctly

import outwatch.dom._
import outwatch.Sink
import scala.scalajs.js.JSApp
import rxscalajs.Observable
object BugList extends JSApp {
  def main():Unit =  {
    //Make an observable that emits two item lists
    val itemLists = Observable.of(
      List("hello","world","!"),
      List("world","!")
    )
    //Make a Sink that prints the items lists to console as they are emitted
    val listsSink = Sink.createSink { lis:List[String] => println(lis) }
    listsSink <-- itemLists
      
    //Map the item lists to lists of html li elements
    val htmlItemLists = itemLists.map{ lis => lis.map { item => li(children := Seq(item)) } } 

    //bind the li elements as children of an ul
    val node = ul(children <-- htmlItemLists)

    OutWatch.render("#app",node)
  }
}

This code should intuitively end up displaying a html list that contains the items "world" and "!". However, it actually displays a list containing "hello" and "world". Printing the original lists to the console yields a correct result, so I think this might be a bug in the implementation of the virtual dom?

Provide validation stream

For handling input and form validation, it could be useful to be able to build a validation stream which could be triggered on input change, pass data through validation methods and reports errors.
I guess, validation could be handled with Cats validated API. May an outwatch API could help building such streams.

ClassSet

This makes it easier to include a bunch of classes depending on boolean values (taken from scalars-react).

div(
  classSet(
    "message"           -> true,
    "message-active"    -> true,
    "message-important" -> props.isImportant,
    "message-read"      -> props.isRead),
  props.message)

// Or for convenience, put all constants in the first arg:
div(
  classSet1(
    "message message-active",
    "message-important" -> props.isImportant,
    "message-read"      -> props.isRead),
  props.message)

Do we have some Observable magic to take into account here? Would we want an Observable[Boolean] to be able to do the toggling?

Module not found errors when trying Get started with Scala with WebpackDevServer

OS: macOS 10.12.4
npm: 3.10.10
outwatch: 0.9.1

Run:

sbt new outwatch/seed.g8
cd <your-project-name>
npm install -g webpack-dev-server
sbt fastOptJS::startWebpackDevServer

Output:

[info] Starting webpack-dev-server
[success] Total time: 2 s, completed 2017.09.02. 9:57:10
> [info]  http://localhost:8080/
[info] webpack result is served from /
[info] content is served from /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[info] webpack: Failed to compile.
[error] Hash: 6084aec4093802d7311e
[error] Version: webpack 1.14.0
[error] Time: 5617ms
[error]                                 Asset     Size  Chunks             Chunk Names
[error]     outwatchscalajs-fastopt-bundle.js  1.53 MB       0  [emitted]  outwatchscalajs-fastopt
[error] outwatchscalajs-fastopt-bundle.js.map  1.73 MB       0  [emitted]  outwatchscalajs-fastopt
[error] chunk    {0} outwatchscalajs-fastopt-bundle.js, outwatchscalajs-fastopt-bundle.js.map (outwatchscalajs-fastopt) 1.46 MB [rendered]
[error]     [0] multi outwatchscalajs-fastopt 40 bytes {0} [built]
[error]     [1] (webpack)-dev-server/client?http://localhost:8080 3.97 kB {0} [built] [3 errors]
[error]     [2] ./fastopt-launcher.js 197 bytes {0} [built]
[error]     [3] ./outwatchscalajs-fastopt.js 744 kB {0} [built] [196 warnings]
[error]     [4] ./~/rxjs/Rx.js 9.62 kB {0} [built]
[error]     [5] ./~/rxjs/Subject.js 5.58 kB {0} [built]
[error]     [6] ./~/rxjs/Observable.js 11.4 kB {0} [built]
[error]     [7] ./~/rxjs/util/root.js 853 bytes {0} [built]
[error]     [8] ./~/rxjs/util/toSubscriber.js 720 bytes {0} [built]
[error]     [9] ./~/rxjs/Subscriber.js 9.66 kB {0} [built]
[error]    [10] ./~/rxjs/util/isFunction.js 110 bytes {0} [built]
[error]    [11] ./~/rxjs/Subscription.js 8.14 kB {0} [built]
[error]    [12] ./~/rxjs/util/isArray.js 111 bytes {0} [built]
[error]    [13] ./~/rxjs/util/isObject.js 115 bytes {0} [built]
[error]    [14] ./~/rxjs/util/tryCatch.js 386 bytes {0} [built]
[error]    [15] ./~/rxjs/util/errorObject.js 138 bytes {0} [built]
[error]    [16] ./~/rxjs/util/UnsubscriptionError.js 1.02 kB {0} [built]
[error]    [17] ./~/rxjs/Observer.js 157 bytes {0} [built]
[error]    [18] ./~/rxjs/symbol/rxSubscriber.js 323 bytes {0} [built]
[error]    [19] ./~/rxjs/symbol/observable.js 680 bytes {0} [built]
[error]    [20] ./~/rxjs/util/ObjectUnsubscribedError.js 904 bytes {0} [built]
[error]    [21] ./~/rxjs/SubjectSubscription.js 1.35 kB {0} [built]
[error]    [22] ./~/rxjs/add/observable/bindCallback.js 193 bytes {0} [built]
[error]    [23] ./~/rxjs/observable/bindCallback.js 165 bytes {0} [built]
[error]    [24] ./~/rxjs/observable/BoundCallbackObservable.js 13 kB {0} [built]
[error]    [25] ./~/rxjs/AsyncSubject.js 1.76 kB {0} [built]
[error]    [26] ./~/rxjs/add/observable/bindNodeCallback.js 213 bytes {0} [built]
[error]    [27] ./~/rxjs/observable/bindNodeCallback.js 185 bytes {0} [built]
[error]    [28] ./~/rxjs/observable/BoundNodeCallbackObservable.js 12.3 kB {0} [built]
[error]    [29] ./~/rxjs/add/observable/combineLatest.js 198 bytes {0} [built]
[error]    [30] ./~/rxjs/observable/combineLatest.js 6.55 kB {0} [built]
[error]    [31] ./~/rxjs/util/isScheduler.js 139 bytes {0} [built]
[error]    [32] ./~/rxjs/observable/ArrayObservable.js 4.53 kB {0} [built]
[error]    [33] ./~/rxjs/observable/ScalarObservable.js 1.83 kB {0} [built]
[error]    [34] ./~/rxjs/observable/EmptyObservable.js 2.93 kB {0} [built]
[error]    [35] ./~/rxjs/operator/combineLatest.js 6.01 kB {0} [built]
[error]    [36] ./~/rxjs/OuterSubscriber.js 1.06 kB {0} [built]
[error]    [37] ./~/rxjs/util/subscribeToResult.js 2.94 kB {0} [built]
[error]    [38] ./~/rxjs/util/isArrayLike.js 98 bytes {0} [built]
[error]    [39] ./~/rxjs/util/isPromise.js 170 bytes {0} [built]
[error]    [40] ./~/rxjs/symbol/iterator.js 1.3 kB {0} [built]
[error]    [41] ./~/rxjs/InnerSubscriber.js 1.25 kB {0} [built]
[error]    [42] ./~/rxjs/add/observable/concat.js 163 bytes {0} [built]
[error]    [43] ./~/rxjs/observable/concat.js 100 bytes {0} [built]
[error]    [44] ./~/rxjs/operator/concat.js 7.5 kB {0} [built]
[error]    [45] ./~/rxjs/operator/mergeAll.js 4.33 kB {0} [built]
[error]    [46] ./~/rxjs/add/observable/defer.js 158 bytes {0} [built]
[error]    [47] ./~/rxjs/observable/defer.js 126 bytes {0} [built]
[error]    [48] ./~/rxjs/observable/DeferObservable.js 3.95 kB {0} [built]
[error]    [49] ./~/rxjs/add/observable/empty.js 158 bytes {0} [built]
[error]    [50] ./~/rxjs/observable/empty.js 126 bytes {0} [built]
[error]    [51] ./~/rxjs/add/observable/forkJoin.js 173 bytes {0} [built]
[error]    [52] ./~/rxjs/observable/forkJoin.js 141 bytes {0} [built]
[error]    [53] ./~/rxjs/observable/ForkJoinObservable.js 4.13 kB {0} [built]
[error]    [54] ./~/rxjs/add/observable/from.js 153 bytes {0} [built]
[error]    [55] ./~/rxjs/observable/from.js 121 bytes {0} [built]
[error]    [56] ./~/rxjs/observable/FromObservable.js 4.99 kB {0} [built]
[error]    [57] ./~/rxjs/observable/PromiseObservable.js 4.63 kB {0} [built]
[error]    [58] ./~/rxjs/observable/IteratorObservable.js 4.98 kB {0} [built]
[error]    [59] ./~/rxjs/observable/ArrayLikeObservable.js 2.52 kB {0} [built]
[error]    [60] ./~/rxjs/operator/observeOn.js 5.59 kB {0} [built]
[error]    [61] ./~/rxjs/Notification.js 4.72 kB {0} [built]
[error]    [62] ./~/rxjs/add/observable/fromEvent.js 178 bytes {0} [built]
[error]    [63] ./~/rxjs/observable/fromEvent.js 146 bytes {0} [built]
[error]    [64] ./~/rxjs/observable/FromEventObservable.js 6.12 kB {0} [built]
[error]    [65] ./~/rxjs/add/observable/fromEventPattern.js 213 bytes {0} [built]
[error]    [66] ./~/rxjs/observable/fromEventPattern.js 181 bytes {0} [built]
[error]    [67] ./~/rxjs/observable/FromEventPatternObservable.js 4.51 kB {0} [built]
[error]    [68] ./~/rxjs/add/observable/fromPromise.js 188 bytes {0} [built]
[error]    [69] ./~/rxjs/observable/fromPromise.js 140 bytes {0} [built]
[error]    [70] ./~/rxjs/add/observable/generate.js 173 bytes {0} [built]
[error]    [71] ./~/rxjs/observable/generate.js 141 bytes {0} [built]
[error]    [72] ./~/rxjs/observable/GenerateObservable.js 4.67 kB {0} [built]
[error]    [73] ./~/rxjs/add/observable/if.js 144 bytes {0} [built]
[error]    [74] ./~/rxjs/observable/if.js 112 bytes {0} [built]
[error]    [75] ./~/rxjs/observable/IfObservable.js 2.25 kB {0} [built]
[error]    [76] ./~/rxjs/add/observable/interval.js 173 bytes {0} [built]
[error]    [77] ./~/rxjs/observable/interval.js 141 bytes {0} [built]
[error]    [78] ./~/rxjs/observable/IntervalObservable.js 3.5 kB {0} [built]
[error]    [79] ./~/rxjs/util/isNumeric.js 464 bytes {0} [built]
[error]    [80] ./~/rxjs/scheduler/async.js 1.45 kB {0} [built]
[error]    [81] ./~/rxjs/scheduler/AsyncAction.js 5.67 kB {0} [built]
[error]    [82] ./~/rxjs/scheduler/Action.js 1.6 kB {0} [built]
[error]    [83] ./~/rxjs/scheduler/AsyncScheduler.js 1.67 kB {0} [built]
[error]    [84] ./~/rxjs/Scheduler.js 1.85 kB {0} [built]
[error]    [85] ./~/rxjs/add/observable/merge.js 158 bytes {0} [built]
[error]    [86] ./~/rxjs/observable/merge.js 95 bytes {0} [built]
[error]    [87] ./~/rxjs/operator/merge.js 6.23 kB {0} [built]
[error]    [88] ./~/rxjs/add/observable/race.js 153 bytes {0} [built]
[error]    [89] ./~/rxjs/observable/race.js 90 bytes {0} [built]
[error]    [90] ./~/rxjs/operator/race.js 4.08 kB {0} [built]
[error]    [91] ./~/rxjs/add/observable/never.js 158 bytes {0} [built]
[error]    [92] ./~/rxjs/observable/never.js 126 bytes {0} [built]
[error]    [93] ./~/rxjs/observable/NeverObservable.js 2.1 kB {0} [built]
[error]    [94] ./~/rxjs/util/noop.js 85 bytes {0} [built]
[error]    [95] ./~/rxjs/add/observable/of.js 143 bytes {0} [built]
[error]    [96] ./~/rxjs/observable/of.js 119 bytes {0} [built]
[error]    [97] ./~/rxjs/add/observable/onErrorResumeNext.js 218 bytes {0} [built]
[error]    [98] ./~/rxjs/observable/onErrorResumeNext.js 155 bytes {0} [built]
[error]    [99] ./~/rxjs/operator/onErrorResumeNext.js 5.93 kB {0} [built]
[error]   [100] ./~/rxjs/add/observable/pairs.js 158 bytes {0} [built]
[error]   [101] ./~/rxjs/observable/pairs.js 126 bytes {0} [built]
[error]   [102] ./~/rxjs/observable/PairsObservable.js 2.82 kB {0} [built]
[error]   [103] ./~/rxjs/add/observable/range.js 158 bytes {0} [built]
[error]   [104] ./~/rxjs/observable/range.js 126 bytes {0} [built]
[error]   [105] ./~/rxjs/observable/RangeObservable.js 3.43 kB {0} [built]
[error]   [106] ./~/rxjs/add/observable/using.js 158 bytes {0} [built]
[error]   [107] ./~/rxjs/observable/using.js 126 bytes {0} [built]
[error]   [108] ./~/rxjs/observable/UsingObservable.js 2.24 kB {0} [built]
[error]   [109] ./~/rxjs/add/observable/throw.js 159 bytes {0} [built]
[error]   [110] ./~/rxjs/observable/throw.js 127 bytes {0} [built]
[error]   [111] ./~/rxjs/observable/ErrorObservable.js 3.08 kB {0} [built]
[error]   [112] ./~/rxjs/add/observable/timer.js 158 bytes {0} [built]
[error]   [113] ./~/rxjs/observable/timer.js 126 bytes {0} [built]
[error]   [114] ./~/rxjs/observable/TimerObservable.js 4.42 kB {0} [built]
[error]   [115] ./~/rxjs/util/isDate.js 118 bytes {0} [built]
[error]   [116] ./~/rxjs/add/observable/zip.js 148 bytes {0} [built]
[error]   [117] ./~/rxjs/observable/zip.js 85 bytes {0} [built]
[error]   [118] ./~/rxjs/operator/zip.js 9.41 kB {0} [built]
[error]   [119] ./~/rxjs/add/observable/dom/ajax.js 163 bytes {0} [built]
[error]   [120] ./~/rxjs/observable/dom/ajax.js 121 bytes {0} [built]
[error]   [121] ./~/rxjs/observable/dom/AjaxObservable.js 15.8 kB {0} [built]
[error]   [122] ./~/rxjs/operator/map.js 3.26 kB {0} [built]
[error]   [123] ./~/rxjs/add/observable/dom/webSocket.js 188 bytes {0} [built]
[error]   [124] ./~/rxjs/observable/dom/webSocket.js 134 bytes {0} [built]
[error]   [125] ./~/rxjs/observable/dom/WebSocketSubject.js 9.35 kB {0} [built]
[error]   [126] ./~/rxjs/ReplaySubject.js 3.82 kB {0} [built]
[error]   [127] ./~/rxjs/scheduler/queue.js 2 kB {0} [built]
[error]   [128] ./~/rxjs/scheduler/QueueAction.js 1.91 kB {0} [built]
[error]   [129] ./~/rxjs/scheduler/QueueScheduler.js 587 bytes {0} [built]
[error]   [130] ./~/rxjs/util/assign.js 643 bytes {0} [built]
[error]   [131] ./~/rxjs/add/operator/buffer.js 171 bytes {0} [built]
[error]   [132] ./~/rxjs/operator/buffer.js 2.82 kB {0} [built]
[error]   [133] ./~/rxjs/add/operator/bufferCount.js 196 bytes {0} [built]
[error]   [134] ./~/rxjs/operator/bufferCount.js 5.34 kB {0} [built]
[error]   [135] ./~/rxjs/add/operator/bufferTime.js 191 bytes {0} [built]
[error]   [136] ./~/rxjs/operator/bufferTime.js 8.53 kB {0} [built]
[error]   [137] ./~/rxjs/add/operator/bufferToggle.js 201 bytes {0} [built]
[error]   [138] ./~/rxjs/operator/bufferToggle.js 6.21 kB {0} [built]
[error]   [139] ./~/rxjs/add/operator/bufferWhen.js 191 bytes {0} [built]
[error]   [140] ./~/rxjs/operator/bufferWhen.js 4.66 kB {0} [built]
[error]   [141] ./~/rxjs/add/operator/catch.js 226 bytes {0} [built]
[error]   [142] ./~/rxjs/operator/catch.js 3.95 kB {0} [built]
[error]   [143] ./~/rxjs/add/operator/combineAll.js 191 bytes {0} [built]
[error]   [144] ./~/rxjs/operator/combineAll.js 2.13 kB {0} [built]
[error]   [145] ./~/rxjs/add/operator/combineLatest.js 206 bytes {0} [built]
[error]   [146] ./~/rxjs/add/operator/concat.js 171 bytes {0} [built]
[error]   [147] ./~/rxjs/add/operator/concatAll.js 186 bytes {0} [built]
[error]   [148] ./~/rxjs/operator/concatAll.js 2.06 kB {0} [built]
[error]   [149] ./~/rxjs/add/operator/concatMap.js 186 bytes {0} [built]
[error]   [150] ./~/rxjs/operator/concatMap.js 3.02 kB {0} [built]
[error]   [151] ./~/rxjs/operator/mergeMap.js 6.53 kB {0} [built]
[error]   [152] ./~/rxjs/add/operator/concatMapTo.js 196 bytes {0} [built]
[error]   [153] ./~/rxjs/operator/concatMapTo.js 2.89 kB {0} [built]
[error]   [154] ./~/rxjs/operator/mergeMapTo.js 6.52 kB {0} [built]
[error]   [155] ./~/rxjs/add/operator/count.js 166 bytes {0} [built]
[error]   [156] ./~/rxjs/operator/count.js 3.96 kB {0} [built]
[error]   [157] ./~/rxjs/add/operator/dematerialize.js 206 bytes {0} [built]
[error]   [158] ./~/rxjs/operator/dematerialize.js 2.77 kB {0} [built]
[error]   [159] ./~/rxjs/add/operator/debounce.js 181 bytes {0} [built]
[error]   [160] ./~/rxjs/operator/debounce.js 5.14 kB {0} [built]
[error]   [161] ./~/rxjs/add/operator/debounceTime.js 201 bytes {0} [built]
[error]   [162] ./~/rxjs/operator/debounceTime.js 4.75 kB {0} [built]
[error]   [163] ./~/rxjs/add/operator/defaultIfEmpty.js 211 bytes {0} [built]
[error]   [164] ./~/rxjs/operator/defaultIfEmpty.js 2.94 kB {0} [built]
[error]   [165] ./~/rxjs/add/operator/delay.js 166 bytes {0} [built]
[error]   [166] ./~/rxjs/operator/delay.js 5.18 kB {0} [built]
[error]   [167] ./~/rxjs/add/operator/delayWhen.js 186 bytes {0} [built]
[error]   [168] ./~/rxjs/operator/delayWhen.js 7.79 kB {0} [built]
[error]   [169] ./~/rxjs/add/operator/distinct.js 181 bytes {0} [built]
[error]   [170] ./~/rxjs/operator/distinct.js 4.73 kB {0} [built]
[error]   [171] ./~/rxjs/util/Set.js 1.02 kB {0} [built]
[error]   [172] ./~/rxjs/add/operator/distinctUntilChanged.js 241 bytes {0} [built]
[error]   [173] ./~/rxjs/operator/distinctUntilChanged.js 4.04 kB {0} [built]
[error]   [174] ./~/rxjs/add/operator/distinctUntilKeyChanged.js 256 bytes {0} [built]
[error]   [175] ./~/rxjs/operator/distinctUntilKeyChanged.js 2.41 kB {0} [built]
[error]   [176] ./~/rxjs/add/operator/do.js 202 bytes {0} [built]
[error]   [177] ./~/rxjs/operator/do.js 4.4 kB {0} [built]
[error]   [178] ./~/rxjs/add/operator/exhaust.js 176 bytes {0} [built]
[error]   [179] ./~/rxjs/operator/exhaust.js 3.45 kB {0} [built]
[error]   [180] ./~/rxjs/add/operator/exhaustMap.js 191 bytes {0} [built]
[error]   [181] ./~/rxjs/operator/exhaustMap.js 5.89 kB {0} [built]
[error]   [182] ./~/rxjs/add/operator/expand.js 171 bytes {0} [built]
[error]   [183] ./~/rxjs/operator/expand.js 6.23 kB {0} [built]
[error]   [184] ./~/rxjs/add/operator/elementAt.js 186 bytes {0} [built]
[error]   [185] ./~/rxjs/operator/elementAt.js 3.78 kB {0} [built]
[error]   [186] ./~/rxjs/util/ArgumentOutOfRangeError.js 974 bytes {0} [built]
[error]   [187] ./~/rxjs/add/operator/filter.js 171 bytes {0} [built]
[error]   [188] ./~/rxjs/operator/filter.js 3.51 kB {0} [built]
[error]   [189] ./~/rxjs/add/operator/finally.js 242 bytes {0} [built]
[error]   [190] ./~/rxjs/operator/finally.js 1.58 kB {0} [built]
[error]   [191] ./~/rxjs/add/operator/find.js 161 bytes {0} [built]
[error]   [192] ./~/rxjs/operator/find.js 3.82 kB {0} [built]
[error]   [193] ./~/rxjs/add/operator/findIndex.js 186 bytes {0} [built]
[error]   [194] ./~/rxjs/operator/findIndex.js 1.6 kB {0} [built]
[error]   [195] ./~/rxjs/add/operator/first.js 166 bytes {0} [built]
[error]   [196] ./~/rxjs/operator/first.js 5.74 kB {0} [built]
[error]   [197] ./~/rxjs/util/EmptyError.js 812 bytes {0} [built]
[error]   [198] ./~/rxjs/add/operator/groupBy.js 176 bytes {0} [built]
[error]   [199] ./~/rxjs/operator/groupBy.js 10.1 kB {0} [built]
[error]   [200] ./~/rxjs/util/Map.js 180 bytes {0} [built]
[error]   [201] ./~/rxjs/util/MapPolyfill.js 1.29 kB {0} [built]
[error]   [202] ./~/rxjs/util/FastMap.js 816 bytes {0} [built]
[error]   [203] ./~/rxjs/add/operator/ignoreElements.js 211 bytes {0} [built]
[error]   [204] ./~/rxjs/operator/ignoreElements.js 1.57 kB {0} [built]
[error]   [205] ./~/rxjs/add/operator/isEmpty.js 176 bytes {0} [built]
[error]   [206] ./~/rxjs/operator/isEmpty.js 1.65 kB {0} [built]
[error]   [207] ./~/rxjs/add/operator/audit.js 166 bytes {0} [built]
[error]   [208] ./~/rxjs/operator/audit.js 4.64 kB {0} [built]
[error]   [209] ./~/rxjs/add/operator/auditTime.js 186 bytes {0} [built]
[error]   [210] ./~/rxjs/operator/auditTime.js 4.2 kB {0} [built]
[error]   [211] ./~/rxjs/add/operator/last.js 161 bytes {0} [built]
[error]   [212] ./~/rxjs/operator/last.js 4.31 kB {0} [built]
[error]   [213] ./~/rxjs/add/operator/let.js 221 bytes {0} [built]
[error]   [214] ./~/rxjs/operator/let.js 180 bytes {0} [built]
[error]   [215] ./~/rxjs/add/operator/every.js 166 bytes {0} [built]
[error]   [216] ./~/rxjs/operator/every.js 2.7 kB {0} [built]
[error]   [217] ./~/rxjs/add/operator/map.js 156 bytes {0} [built]
[error]   [218] ./~/rxjs/add/operator/mapTo.js 166 bytes {0} [built]
[error]   [219] ./~/rxjs/operator/mapTo.js 2.15 kB {0} [built]
[error]   [220] ./~/rxjs/add/operator/materialize.js 196 bytes {0} [built]
[error]   [221] ./~/rxjs/operator/materialize.js 3.66 kB {0} [built]
[error]   [222] ./~/rxjs/add/operator/max.js 156 bytes {0} [built]
[error]   [223] ./~/rxjs/operator/max.js 1.49 kB {0} [built]
[error]   [224] ./~/rxjs/operator/reduce.js 4.92 kB {0} [built]
[error]   [225] ./~/rxjs/add/operator/merge.js 166 bytes {0} [built]
[error]   [226] ./~/rxjs/add/operator/mergeAll.js 181 bytes {0} [built]
[error]   [227] ./~/rxjs/add/operator/mergeMap.js 246 bytes {0} [built]
[error]   [228] ./~/rxjs/add/operator/mergeMapTo.js 262 bytes {0} [built]
[error]   [229] ./~/rxjs/add/operator/mergeScan.js 186 bytes {0} [built]
[error]   [230] ./~/rxjs/operator/mergeScan.js 4.86 kB {0} [built]
[error]   [231] ./~/rxjs/add/operator/min.js 156 bytes {0} [built]
[error]   [232] ./~/rxjs/operator/min.js 1.49 kB {0} [built]
[error]   [233] ./~/rxjs/add/operator/multicast.js 186 bytes {0} [built]
[error]   [234] ./~/rxjs/operator/multicast.js 2.44 kB {0} [built]
[error]   [235] ./~/rxjs/observable/ConnectableObservable.js 6.6 kB {0} [built]
[error]   [236] ./~/rxjs/add/operator/observeOn.js 186 bytes {0} [built]
[error]   [237] ./~/rxjs/add/operator/onErrorResumeNext.js 226 bytes {0} [built]
[error]   [238] ./~/rxjs/add/operator/pairwise.js 181 bytes {0} [built]
[error]   [239] ./~/rxjs/operator/pairwise.js 2.63 kB {0} [built]
[error]   [240] ./~/rxjs/add/operator/partition.js 186 bytes {0} [built]
[error]   [241] ./~/rxjs/operator/partition.js 2.41 kB {0} [built]
[error]   [242] ./~/rxjs/util/not.js 238 bytes {0} [built]
[error]   [243] ./~/rxjs/add/operator/pluck.js 166 bytes {0} [built]
[error]   [244] ./~/rxjs/operator/pluck.js 1.83 kB {0} [built]
[error]   [245] ./~/rxjs/add/operator/publish.js 176 bytes {0} [built]
[error]   [246] ./~/rxjs/operator/publish.js 1.1 kB {0} [built]
[error]   [247] ./~/rxjs/add/operator/publishBehavior.js 216 bytes {0} [built]
[error]   [248] ./~/rxjs/operator/publishBehavior.js 391 bytes {0} [built]
[error]   [249] ./~/rxjs/BehaviorSubject.js 1.62 kB {0} [built]
[error]   [250] ./~/rxjs/add/operator/publishReplay.js 206 bytes {0} [built]
[error]   [251] ./~/rxjs/operator/publishReplay.js 625 bytes {0} [built]
[error]   [252] ./~/rxjs/add/operator/publishLast.js 196 bytes {0} [built]
[error]   [253] ./~/rxjs/operator/publishLast.js 337 bytes {0} [built]
[error]   [254] ./~/rxjs/add/operator/race.js 161 bytes {0} [built]
[error]   [255] ./~/rxjs/add/operator/reduce.js 171 bytes {0} [built]
[error]   [256] ./~/rxjs/add/operator/repeat.js 171 bytes {0} [built]
[error]   [257] ./~/rxjs/operator/repeat.js 2.37 kB {0} [built]
[error]   [258] ./~/rxjs/add/operator/repeatWhen.js 191 bytes {0} [built]
[error]   [259] ./~/rxjs/operator/repeatWhen.js 4.54 kB {0} [built]
[error]   [260] ./~/rxjs/add/operator/retry.js 166 bytes {0} [built]
[error]   [261] ./~/rxjs/operator/retry.js 2.55 kB {0} [built]
[error]   [262] ./~/rxjs/add/operator/retryWhen.js 186 bytes {0} [built]
[error]   [263] ./~/rxjs/operator/retryWhen.js 4.18 kB {0} [built]
[error]   [264] ./~/rxjs/add/operator/sample.js 171 bytes {0} [built]
[error]   [265] ./~/rxjs/operator/sample.js 3.26 kB {0} [built]
[error]   [266] ./~/rxjs/add/operator/sampleTime.js 191 bytes {0} [built]
[error]   [267] ./~/rxjs/operator/sampleTime.js 3.55 kB {0} [built]
[error]   [268] ./~/rxjs/add/operator/scan.js 161 bytes {0} [built]
[error]   [269] ./~/rxjs/operator/scan.js 4.27 kB {0} [built]
[error]   [270] ./~/rxjs/add/operator/sequenceEqual.js 206 bytes {0} [built]
[error]   [271] ./~/rxjs/operator/sequenceEqual.js 6.15 kB {0} [built]
[error]   [272] ./~/rxjs/add/operator/share.js 166 bytes {0} [built]
[error]   [273] ./~/rxjs/operator/share.js 890 bytes {0} [built]
[error]   [274] ./~/rxjs/add/operator/shareReplay.js 196 bytes {0} [built]
[error]   [275] ./~/rxjs/operator/shareReplay.js 606 bytes {0} [built]
[error]   [276] ./~/rxjs/add/operator/single.js 171 bytes {0} [built]
[error]   [277] ./~/rxjs/operator/single.js 3.3 kB {0} [built]
[error]   [278] ./~/rxjs/add/operator/skip.js 161 bytes {0} [built]
[error]   [279] ./~/rxjs/operator/skip.js 1.6 kB {0} [built]
[error]   [280] ./~/rxjs/add/operator/skipLast.js 181 bytes {0} [built]
[error]   [281] ./~/rxjs/operator/skipLast.js 3.25 kB {0} [built]
[error]   [282] ./~/rxjs/add/operator/skipUntil.js 186 bytes {0} [built]
[error]   [283] ./~/rxjs/operator/skipUntil.js 2.62 kB {0} [built]
[error]   [284] ./~/rxjs/add/operator/skipWhile.js 186 bytes {0} [built]
[error]   [285] ./~/rxjs/operator/skipWhile.js 2.31 kB {0} [built]
[error]   [286] ./~/rxjs/add/operator/startWith.js 186 bytes {0} [built]
[error]   [287] ./~/rxjs/operator/startWith.js 1.67 kB {0} [built]
[error]   [288] ./~/rxjs/add/operator/subscribeOn.js 196 bytes {0} [built]
[error]   [289] ./~/rxjs/operator/subscribeOn.js 1.08 kB {0} [built]
[error]   [290] ./~/rxjs/observable/SubscribeOnObservable.js 2.03 kB {0} [built]
[error]   [291] ./~/rxjs/scheduler/asap.js 1.64 kB {0} [built]
[error]   [292] ./~/rxjs/scheduler/AsapAction.js 2.52 kB {0} [built]
[error]   [293] ./~/rxjs/util/Immediate.js 9.08 kB {0} [built]
[error]   [294] /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/~/timers-browserify/main.js 1.36 kB {0} [built] [1 error]
[error]   [295] ./~/rxjs/scheduler/AsapScheduler.js 1.26 kB {0} [built]
[error]   [296] ./~/rxjs/add/operator/switch.js 234 bytes {0} [built]
[error]   [297] ./~/rxjs/operator/switch.js 4.21 kB {0} [built]
[error]   [298] ./~/rxjs/add/operator/switchMap.js 186 bytes {0} [built]
[error]   [299] ./~/rxjs/operator/switchMap.js 5.84 kB {0} [built]
[error]   [300] ./~/rxjs/add/operator/switchMapTo.js 196 bytes {0} [built]
[error]   [301] ./~/rxjs/operator/switchMapTo.js 5.34 kB {0} [built]
[error]   [302] ./~/rxjs/add/operator/take.js 161 bytes {0} [built]
[error]   [303] ./~/rxjs/operator/take.js 3.06 kB {0} [built]
[error]   [304] ./~/rxjs/add/operator/takeLast.js 181 bytes {0} [built]
[error]   [305] ./~/rxjs/operator/takeLast.js 3.9 kB {0} [built]
[error]   [306] ./~/rxjs/add/operator/takeUntil.js 186 bytes {0} [built]
[error]   [307] ./~/rxjs/operator/takeUntil.js 2.85 kB {0} [built]
[error]   [308] ./~/rxjs/add/operator/takeWhile.js 186 bytes {0} [built]
[error]   [309] ./~/rxjs/operator/takeWhile.js 3.46 kB {0} [built]
[error]   [310] ./~/rxjs/add/operator/throttle.js 181 bytes {0} [built]
[error]   [311] ./~/rxjs/operator/throttle.js 5.81 kB {0} [built]
[error]   [312] ./~/rxjs/add/operator/throttleTime.js 201 bytes {0} [built]
[error]   [313] ./~/rxjs/operator/throttleTime.js 4.69 kB {0} [built]
[error]   [314] ./~/rxjs/add/operator/timeInterval.js 201 bytes {0} [built]
[error]   [315] ./~/rxjs/operator/timeInterval.js 1.97 kB {0} [built]
[error]   [316] ./~/rxjs/add/operator/timeout.js 176 bytes {0} [built]
[error]   [317] ./~/rxjs/operator/timeout.js 6.52 kB {0} [built]
[error]   [318] ./~/rxjs/util/TimeoutError.js 736 bytes {0} [built]
[error]   [319] ./~/rxjs/add/operator/timeoutWith.js 196 bytes {0} [built]
[error]   [320] ./~/rxjs/operator/timeoutWith.js 3.66 kB {0} [built]
[error]   [321] ./~/rxjs/add/operator/timestamp.js 186 bytes {0} [built]
[error]   [322] ./~/rxjs/operator/timestamp.js 1.67 kB {0} [built]
[error]   [323] ./~/rxjs/add/operator/toArray.js 176 bytes {0} [built]
[error]   [324] ./~/rxjs/operator/toArray.js 1.37 kB {0} [built]
[error]   [325] ./~/rxjs/add/operator/toPromise.js 186 bytes {0} [built]
[error]   [326] ./~/rxjs/operator/toPromise.js 2.08 kB {0} [built]
[error]   [327] ./~/rxjs/add/operator/window.js 171 bytes {0} [built]
[error]   [328] ./~/rxjs/operator/window.js 4.17 kB {0} [built]
[error]   [329] ./~/rxjs/add/operator/windowCount.js 196 bytes {0} [built]
[error]   [330] ./~/rxjs/operator/windowCount.js 5.32 kB {0} [built]
[error]   [331] ./~/rxjs/add/operator/windowTime.js 191 bytes {0} [built]
[error]   [332] ./~/rxjs/operator/windowTime.js 6.6 kB {0} [built]
[error]   [333] ./~/rxjs/add/operator/windowToggle.js 201 bytes {0} [built]
[error]   [334] ./~/rxjs/operator/windowToggle.js 7.13 kB {0} [built]
[error]   [335] ./~/rxjs/add/operator/windowWhen.js 191 bytes {0} [built]
[error]   [336] ./~/rxjs/operator/windowWhen.js 5.01 kB {0} [built]
[error]   [337] ./~/rxjs/add/operator/withLatestFrom.js 211 bytes {0} [built]
[error]   [338] ./~/rxjs/operator/withLatestFrom.js 5.16 kB {0} [built]
[error]   [339] ./~/rxjs/add/operator/zip.js 161 bytes {0} [built]
[error]   [340] ./~/rxjs/add/operator/zipAll.js 171 bytes {0} [built]
[error]   [341] ./~/rxjs/operator/zipAll.js 278 bytes {0} [built]
[error]   [342] ./~/rxjs/testing/TestScheduler.js 10.1 kB {0} [built]
[error]   [343] ./~/rxjs/testing/ColdObservable.js 1.89 kB {0} [built]
[error]   [344] ./~/rxjs/testing/SubscriptionLoggable.js 820 bytes {0} [built]
[error]   [345] ./~/rxjs/testing/SubscriptionLog.js 393 bytes {0} [built]
[error]   [346] ./~/rxjs/util/applyMixins.js 469 bytes {0} [built]
[error]   [347] ./~/rxjs/testing/HotObservable.js 1.85 kB {0} [built]
[error]   [348] ./~/rxjs/scheduler/VirtualTimeScheduler.js 4.11 kB {0} [built]
[error]   [349] ./~/rxjs/scheduler/animationFrame.js 1.26 kB {0} [built]
[error]   [350] ./~/rxjs/scheduler/AnimationFrameAction.js 2.68 kB {0} [built]
[error]   [351] ./~/rxjs/util/AnimationFrame.js 1.66 kB {0} [built]
[error]   [352] ./~/rxjs/scheduler/AnimationFrameScheduler.js 1.33 kB {0} [built]
[error]   [353] ./~/snabbdom/snabbdom.js 12.1 kB {0} [built]
[error]   [354] ./~/snabbdom/vnode.js 330 bytes {0} [built]
[error]   [355] ./~/snabbdom/is.js 224 bytes {0} [built]
[error]   [356] ./~/snabbdom/htmldomapi.js 1.68 kB {0} [built]
[error]   [357] ./~/snabbdom/h.js 1.63 kB {0} [built]
[error]   [358] ./~/snabbdom/thunk.js 1.31 kB {0} [built]
[error]   [359] ./~/snabbdom/modules/attributes.js 2.7 kB {0} [built]
[error]   [360] ./~/snabbdom/modules/class.js 742 bytes {0} [built]
[error]   [361] ./~/snabbdom/modules/eventlisteners.js 3.25 kB {0} [built]
[error]   [362] ./~/snabbdom/modules/props.js 761 bytes {0} [built]
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/tools/scalajsenv.js': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/tools/scalajsenv.js in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/facade/ObservableFacade.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/facade/ObservableFacade.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/h.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/h.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function1.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function1.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Tags.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Tags.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/VDomModifier.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/VDomModifier.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSNumberOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSNumberOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Integer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Integer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Proxy.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Proxy.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Builder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Builder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Promise.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Promise.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/impl/Promise.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/impl/Promise.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/util/control/NoStackTrace.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/util/control/NoStackTrace.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/UndefinedBehaviorError.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/UndefinedBehaviorError.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversableOnce.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversableOnce.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Vector.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Vector.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Math.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Math.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashEntry.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashEntry.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashTable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashTable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../localhome/doeraene/projects/scalajs-dom/src/main/scala/org/scalajs/dom/package.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../localhome/doeraene/projects/scalajs-dom/src/main/scala/org/scalajs/dom/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dynamic.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dynamic.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/OutWatch.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/OutWatch.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/helpers/DomUtils.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/helpers/DomUtils.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/UndefOr.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/UndefOr.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple5.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple5.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Option.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Option.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Union.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Union.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple4.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple4.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple3.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple3.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Seq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Seq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenTraversableFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenTraversableFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSConverters.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSConverters.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/ArrayOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/ArrayOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedArray.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedArray.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/ScalaRunTime.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/ScalaRunTime.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/MurmurHash3.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/MurmurHash3.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/Observable.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/Observable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Seq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Seq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ListBuffer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ListBuffer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dictionary.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dictionary.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedDictionary.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedDictionary.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterator.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterator.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[info] webpack: Compiling...
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/VDomProxy.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/VDomProxy.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Predef.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Predef.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Traversable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Traversable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/MapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/MapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Class.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Class.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/System.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/System.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/DynamicImplicits.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/DynamicImplicits.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Arrays.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Arrays.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/Array.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/Array.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/concurrent/ExecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/concurrent/ExecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/JSExecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/JSExecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Future.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Future.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Try.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Try.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordered.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordered.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/ClassManifestDeprecatedApis.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/ClassManifestDeprecatedApis.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/reflect/Manifest.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/reflect/Manifest.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/Breaks.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/Breaks.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/ControlThrowable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/ControlThrowable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/NonFatal.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/NonFatal.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/RefTypes.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/RefTypes.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/List.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/List.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqExtractors.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqExtractors.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableOnce.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableOnce.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/StringBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/StringBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StringBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StringBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqOptimized.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqOptimized.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenMapFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenMapFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericCompanion.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericCompanion.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/Growable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/Growable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Stream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Stream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/WrappedString.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/WrappedString.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/DefaultEntry.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/DefaultEntry.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeLong.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeLong.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/QueueExecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/QueueExecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/Bits.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/Bits.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Double.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Double.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeString.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeString.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSStringOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSStringOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/StackTrace.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/StackTrace.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Any.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Any.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JavaScriptException.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JavaScriptException.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/BoxesRunTime.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/BoxesRunTime.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Character.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Character.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Null$.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Null$.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/Statics.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/Statics.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../src/main/scala/outwatchscalajs/Outwatchscalajs.scala': Error: Cannot resolve 'file' or 'directory' ../../../src/main/scala/outwatchscalajs/Outwatchscalajs.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/package.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSApp.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSApp.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Number.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Number.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StackTraceElement.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StackTraceElement.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Throwables.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Throwables.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/AnonFunctions.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/AnonFunctions.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/CanBuildFrom.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/CanBuildFrom.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product3.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product3.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product4.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product4.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product5.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product5.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSetFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSetFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericTraversableTemplate.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericTraversableTemplate.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/MapFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/MapFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction0.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction0.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function0.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function0.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction1.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction1.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Boolean.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Boolean.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/BoxedUnit.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/BoxedUnit.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/OutputStream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/OutputStream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/atomic/AtomicReference.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/atomic/AtomicReference.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/StringContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/StringContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Fractional.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Fractional.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Integral.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Integral.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Numeric.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Numeric.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/math/ScalaNumber.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/math/ScalaNumber.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Either.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Either.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/IndexedSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/IndexedSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSeqFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSeqFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableMapFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableMapFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/immutable/Range.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/immutable/Range.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Nothing$.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Nothing$.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/FilterOutputStream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/FilterOutputStream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Byte.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Byte.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Float.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Float.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Long.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Long.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Short.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Short.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/Throwables.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/Throwables.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Equiv.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Equiv.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordering.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordering.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/NoManifest.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/NoManifest.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SetFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SetFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Map.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Map.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/GrowingBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/GrowingBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/RunNowExcecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/RunNowExcecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Throwables.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Throwables.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/MatchError.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/MatchError.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IterableLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IterableLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Iterable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Iterable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Traversable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Traversable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableSetFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableSetFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/TrieIterator.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/TrieIterator.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashSet.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashSet.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Iterable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Iterable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/LazyBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/LazyBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/SetBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/SetBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/NonLocalReturnControl.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/NonLocalReturnControl.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/PrintStream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/PrintStream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSetLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSetLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Map.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Map.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Set.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Set.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/TraversableForwarder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/TraversableForwarder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IndexedSeqFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IndexedSeqFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListSet.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListSet.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ArrayBuffer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ArrayBuffer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSet.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSet.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqOptimized.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqOptimized.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SetLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SetLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/MapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/MapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Map.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Map.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Attributes.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Attributes.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Set.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Set.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/DefaultMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/DefaultMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Seq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Seq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ResizableArray.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ResizableArray.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/mutable/Buffer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/mutable/Buffer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqForwarder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqForwarder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IterableForwarder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IterableForwarder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] ERROR in (webpack)-dev-server/client?http://localhost:8080
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/webpack-dev-server/client
[error]  @ (webpack)-dev-server/client?http://localhost:8080 3:13-32
[error] 
[error] ERROR in (webpack)-dev-server/client?http://localhost:8080
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/webpack-dev-server/client
[error]  @ (webpack)-dev-server/client?http://localhost:8080 1:10-24
[error] 
[error] ERROR in (webpack)-dev-server/client?http://localhost:8080
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/webpack-dev-server/client
[error]  @ (webpack)-dev-server/client?http://localhost:8080 2:16-37
[error] 
[error] ERROR in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/~/timers-browserify/main.js
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/timers-browserify
[error]  @ /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/~/timers-browserify/main.js 51:0-23
[info] webpack: Failed to compile.
[error] Hash: 6084aec4093802d7311e
[error] Version: webpack 1.14.0
[error] Time: 105ms
[error] chunk    {0} outwatchscalajs-fastopt-bundle.js, outwatchscalajs-fastopt-bundle.js.map (outwatchscalajs-fastopt) 1.46 MB
[error]      + 363 hidden modules
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/tools/scalajsenv.js': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/tools/scalajsenv.js in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/facade/ObservableFacade.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/facade/ObservableFacade.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/h.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/h.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function1.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function1.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Tags.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Tags.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/VDomModifier.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/VDomModifier.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSNumberOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSNumberOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Integer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Integer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Proxy.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Proxy.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Builder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Builder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Promise.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Promise.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/impl/Promise.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/impl/Promise.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/util/control/NoStackTrace.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/util/control/NoStackTrace.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/UndefinedBehaviorError.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/UndefinedBehaviorError.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversableOnce.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversableOnce.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Vector.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Vector.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Math.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Math.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashEntry.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashEntry.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashTable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashTable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../localhome/doeraene/projects/scalajs-dom/src/main/scala/org/scalajs/dom/package.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../localhome/doeraene/projects/scalajs-dom/src/main/scala/org/scalajs/dom/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dynamic.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dynamic.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/OutWatch.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/OutWatch.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/helpers/DomUtils.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/helpers/DomUtils.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/UndefOr.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/UndefOr.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple5.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple5.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Option.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Option.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Union.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Union.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple4.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple4.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple3.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Tuple3.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Seq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Seq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenTraversableFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenTraversableFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSConverters.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSConverters.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/ArrayOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/ArrayOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedArray.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedArray.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/ScalaRunTime.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/ScalaRunTime.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/MurmurHash3.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/MurmurHash3.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/Observable.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/rxscala-js/src/main/scala/rxscalajs/Observable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Seq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Seq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ListBuffer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ListBuffer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dictionary.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Dictionary.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedDictionary.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/WrappedDictionary.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterator.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterator.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/VDomProxy.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/snabbdom/VDomProxy.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Predef.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Predef.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Traversable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Traversable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/MapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/MapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Class.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Class.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/System.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/System.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/DynamicImplicits.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/DynamicImplicits.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Arrays.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Arrays.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/Array.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/Array.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/concurrent/ExecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/concurrent/ExecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/JSExecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/JSExecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Future.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/concurrent/Future.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Try.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Try.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordered.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordered.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/ClassManifestDeprecatedApis.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/ClassManifestDeprecatedApis.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/reflect/Manifest.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/reflect/Manifest.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/Breaks.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/Breaks.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/ControlThrowable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/ControlThrowable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/NonFatal.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/control/NonFatal.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/RefTypes.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/RefTypes.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/List.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/List.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/package.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/hashing/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqExtractors.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqExtractors.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableOnce.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableOnce.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/StringBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/StringBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StringBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StringBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqOptimized.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqOptimized.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenMapFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenMapFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericCompanion.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericCompanion.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/Growable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/Growable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Stream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Stream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/WrappedString.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/WrappedString.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/HashMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/DefaultEntry.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/DefaultEntry.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeLong.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeLong.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/QueueExecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/QueueExecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/Bits.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/Bits.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Double.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Double.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeString.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/RuntimeString.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSStringOps.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSStringOps.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/StackTrace.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/StackTrace.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/StringLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Any.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/Any.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JavaScriptException.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JavaScriptException.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/BoxesRunTime.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/runtime/BoxesRunTime.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Character.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Character.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Null$.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Null$.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/Statics.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/Statics.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../src/main/scala/outwatchscalajs/Outwatchscalajs.scala': Error: Cannot resolve 'file' or 'directory' ../../../src/main/scala/outwatchscalajs/Outwatchscalajs.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/package.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/package.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSApp.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/js/JSApp.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Number.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Number.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StackTraceElement.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/StackTraceElement.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Throwables.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Throwables.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/AnonFunctions.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/runtime/AnonFunctions.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/CanBuildFrom.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/CanBuildFrom.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product3.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product3.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product4.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product4.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product5.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Product5.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/TraversableLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSetFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSetFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericTraversableTemplate.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenericTraversableTemplate.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/MapFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/MapFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction0.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction0.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function0.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function0.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction1.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction1.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/AbstractFunction2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function2.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/Function2.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Boolean.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Boolean.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/BoxedUnit.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library-aux/src/main/scala/scala/runtime/BoxedUnit.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/OutputStream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/OutputStream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/atomic/AtomicReference.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/atomic/AtomicReference.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/StringContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/StringContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Fractional.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Fractional.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Integral.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Integral.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Numeric.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Numeric.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/math/ScalaNumber.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides/scala/math/ScalaNumber.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Either.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/util/Either.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/IndexedSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/IndexedSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSeqFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/GenSeqFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableMapFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableMapFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/immutable/Range.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/immutable/Range.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Nothing$.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/Nothing$.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/FilterOutputStream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/FilterOutputStream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Byte.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Byte.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Float.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Float.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Long.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Long.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Short.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalanglib/src/main/scala/java/lang/Short.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/Throwables.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/concurrent/Throwables.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Equiv.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Equiv.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordering.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/math/Ordering.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/NoManifest.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/reflect/NoManifest.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SetFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SetFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Map.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Map.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/GrowingBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/GrowingBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/RunNowExcecutionContext.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/library/src/main/scala/scala/scalajs/concurrent/RunNowExcecutionContext.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Throwables.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/util/Throwables.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/MatchError.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/MatchError.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IterableLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IterableLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenTraversable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Iterable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Iterable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Iterable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Traversable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Traversable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableSetFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/ImmutableSetFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/TrieIterator.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/TrieIterator.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashSet.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/HashSet.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Iterable.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Iterable.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/LazyBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/LazyBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/SetBuilder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/SetBuilder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/NonLocalReturnControl.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/runtime/NonLocalReturnControl.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/PrintStream.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/javalib/src/main/scala/java/io/PrintStream.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSetLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSetLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Map.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Map.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Set.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/Set.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/TraversableForwarder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/TraversableForwarder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IndexedSeqFactory.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IndexedSeqFactory.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListSet.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListSet.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ArrayBuffer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ArrayBuffer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSet.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/GenSet.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqOptimized.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/IndexedSeqOptimized.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SetLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/SetLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/MapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/MapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Map.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Map.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file '../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Attributes.scala': Error: Cannot resolve 'file' or 'directory' ../../../../../../../../E:/Documents/GitHub/outwatch/src/main/scala/outwatch/dom/Attributes.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/LinearSeq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Set.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/Set.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/DefaultMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/DefaultMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Seq.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/Seq.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListMap.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/immutable/ListMap.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ResizableArray.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/ResizableArray.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/MapLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/mutable/Buffer.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala-js/scala-js/v0.6.19/scalalib/overrides-2.12/scala/collection/mutable/Buffer.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqForwarder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/SeqForwarder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IterableForwarder.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/generic/IterableForwarder.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] WARNING in ./outwatchscalajs-fastopt.js
[error] Cannot find source file 'https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeqLike.scala': Error: Cannot resolve 'file' or 'directory' ./https://raw.githubusercontent.com/scala/scala/v2.12.2/src/library/scala/collection/mutable/IndexedSeqLike.scala in /Users/thsoft/Development/project/outwatch-scalajs/target/scala-2.12/scalajs-bundler/main
[error] 
[error] ERROR in (webpack)-dev-server/client?http://localhost:8080
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/webpack-dev-server/client
[error]  @ (webpack)-dev-server/client?http://localhost:8080 1:10-24
[error] 
[error] ERROR in (webpack)-dev-server/client?http://localhost:8080
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/webpack-dev-server/client
[error]  @ (webpack)-dev-server/client?http://localhost:8080 2:16-37
[error] 
[error] ERROR in (webpack)-dev-server/client?http://localhost:8080
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/webpack-dev-server/client
[error]  @ (webpack)-dev-server/client?http://localhost:8080 3:13-32
[error] 
[error] ERROR in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/~/timers-browserify/main.js
[error] Module not found: Error: Cannot resolve module 'source-map-loader' in /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/node_modules/timers-browserify
[error]  @ /Users/thsoft/Development/project/outwatch-scalajs/target/scalajs-bundler-webpack-dev-server/~/timers-browserify/main.js 51:0-23

Draggable does not work.

Outwatch generates the draggable attribute as a boolean flag, like

<li draggable data-age="38">Brian Albers</li>

but it seems only the following is working (according to the spec there are 3 possible values "true", "false" and nothing)

<li draggable="true" data-age="38">Brian Albers</li>

I tried to add it like

Attribute("draggable", "true")

but this creates still the boolean flag.

BTW is there a working drag'n'drop example?

Refactor tags and attributes

As a user of the lib I would like to be able to better namespace tags and attributes and only import what is needed.

I would also like to have access to documentation showing me what the various tags and attributes are used for.

PR coming soon.

There must be a way to supply `key` property to Snabbdom

Hi! Let's look at the test case:

import outwatch.dom._
import scala.scalajs.js.JSApp

object Test11 extends JSApp {
  val clicks = createHandler[Int](1)
  val nodes = clicks.map { i =>
    div(
      new Attribute(title = "key", value =s"key-$i"),
      a(href := "#", click(if (i == 1) 2 else 1) --> clicks,  s"I'm $i, go to another"),
      input()
    )
  }

  def main(): Unit = OutWatch.render("#app", div(child <-- nodes))
}

As you see, in accordance with Snabbdom logic div containing key attribute must be replaced as a child of containing div on clicking "..go to another". So it is expected these steps

  • input something into the input field
  • click href

will result in empty field, as far as previous input element must be completely removed form the DOM. Nevertheless the text which was input into the field is kept after clicking.

I have verified in browser key attribute value is changing on click.

Option to filter emitted events

Let's consider a textFileldComponent similar to the one in the todo example:

  def textFieldComponent(sink: Sink[String]): VNode = {
    val fieldValue = createStringHandler("")

    val disabledValues = fieldValue
      .map(_.length < 4)

    div(
      label("Todo: "),
      input(
        inputString --> fieldValue,
        value <-- fieldValue
      ),
      button(
        click(fieldValue) --> sink,
        click("") --> fieldValue,
        disabled <-- disabledValues,
        "Submit"
      )
    )
  }

I wanted to be able to submit also by passing the Enter key in addition to the submit button. I figured it can be accomplished by doing something like this:

def textFieldComponent(sink: Sink[String]): VNode = {
    val fieldValue = createStringHandler("")

    val disabledValues = fieldValue
      .map(_.length < 4)

    div(
      label("Todo: "),
      input(
        inputString --> fieldValue,
        value <-- fieldValue,
        keydown --> sink.redirect[KeyboardEvent](_.filter(_.keyCode == 13).withLatestFromWith(fieldValue)((_, u) => u))
      ),
      button(
        click(fieldValue) --> sink,
        click("") --> fieldValue,
        disabled <-- disabledValues,
        "Submit"
      )
    )
  }

The syntax of this could be made much nicer by adding a filter method to the EventEmitterBuilder(s), so something like this would work:

def textFieldComponent(sink: Sink[String]): VNode = {
    val fieldValue = createStringHandler("")

    val disabledValues = fieldValue
      .map(_.length < 4)

    val enterdown = keydown.filter(_.keyCode == 13)

    div(
      label("Todo: "),
      input(
        inputString --> fieldValue,
        value <-- fieldValue,
        enterdown(fieldValue) --> sink,
        enterdown("") --> fieldValue
      ),
      button(
        click(fieldValue) --> sink,
        click("") --> fieldValue,
        disabled <-- disabledValues,
        "Submit"
      )
    )
  }

This would also allow to handle things like Alt-Click by doing this:

val sumit = createBoolHandler()
val altClick = click.filter(_.altKey)

button(
  altClick ->sumit,
  "Press Alt-Click to submit"
)

Boolean selection of attribute values

This would make it easier to include an attribute or not depending on a boolean value (taken from scalajs-react).

def hasFocus: Boolean = ???

input(hasFocus ?= (value := "I have a value only when I'm focused"))

Do we have some Observable magic to take into account here? Would we want an Observable[Boolean] to be able to do the toggling?

Redux Store called more than ones.

I created a simple example with Outwatch and Redux. It works fine, but in the debugger you see that the reducer is called 4 times for each event:
outwatch-redux

Did I miss something? Here is my code: StopWatch.scala

The project can be run with >sbt ~fastOptJS

Document lifecycle management

Hi!

I saw your presentation from Curry On, nice work! I read through the docs this week-end and I'd like to see something about how life cycle management is handled. I've previously used udash, Scala.rx and even had a peek at Binding.Scala. Scala.rx has the concept of context to prevent leaks whereas Binding does some other magic. How's this done in outwatch?

Provide imports for testing and large codebase migrations

Currently it is not possible to manually write data into a Sink or Handler. For safety reasons the next() method on the inner observable of Sink is hidden. This is a good thing to discourage the usage of side-effects.

Though this would be useful to use in tests.

Another use-case is migration of large code-bases. Allowing side-effecting parts of the code to write into Sink/Handler would help to at least compile a partially migrated code base.

I suggest an Import like

import outwatch.sinkUnsafeNext

where SinkUnsafeNext is an implicit class over Sink to provide an unsafeNext() method.

Introduce Handler that redirects to a Sink

I would like to define a Sink that receives something, transforms it to something else and forwards it to an the existing Sink, something like this: val objectSink = createForwardingSink[Object](_.toString, stringSink).

(This would be a bit similar to Elm's former forwardTo).

Testing UIs with Outwatch

Hi all!

Outwatch looks fantastic, I can't wait to try it out.

I was wondering what the standard practices are around testing for Outwatch. Since Outwatch is really quite functional, it seems like I should be able to test it without having to worry about stateful stuff like the DOM. So, can I test my Outwatch UIs in some virtualized DOM environment, without having to muck around with ScalaJS/jquery stuff?

Play integration example

Hi,

First, your project is very interesting ! Thank you for your work ! :)

Next, do you have an example of how to integrate an OutWatch projet in a Play one ?

I saw this kind of ScalaJS integration: https://github.com/vmunier/play-with-scalajs-example (which I already use) with a "frontend" project and a "backend" one, but it uses twirl.
Is it possible to not use twirl and just serve the output of OutWatch "compilation" ?

Thanks,
Jules

Exception with Observable.just in child/children

 div(child <-- Observable.just(div()))
"Promise already completed."

"Error↵    at $c_jl_IllegalStateException.$c_jl_Throwable.fillInStackTrace__jl_Throwable ...

On second patch of VDom this throws... I suppose it's because that observable has completed.

edit:

happens with deprecated := as well

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.