electron-userland / electron-compile

DEPRECATED: Electron supporting package to compile JS and CSS in Electron applications
1.01k stars 99 forks source link

enableLiveReload({strategy: 'react-hmr'}); doesn't work for me. #273

Closed mnemanja closed 4 years ago

mnemanja commented 6 years ago

node v6.11.3 npm v3.10.10 yarn v1.2.1 os windows 10

Hello,

I've initialized the electron-forge app and tried testing the hot reload, but nothing happens. If I remove the "strategy" from the enableLiveReload, then the page refresh happens, but that reloads the whole state.

Now, while debugging this behavior I've noticed that when making changes the reload does occur on the script level: each time HMR sent to all windows! gets reported after the change, but no visual changes are applied.

Second clue: I have a console.log in the app.jsx file and when I'm changing any part of the application, except app.jsx, the console.log reports to the devTool's console. Then I went and changed the content of the console.log statement - nothing happened, and after making changes to some other file, the console.log did get triggered (as described above) but the state of the console.log in question did not get updated in the devTool's console.

My .compilerc file looks like this (default):

 {
  "env": {
    "development": {
      "application/javascript": {
        "presets": [
          ["env", { "targets": { "electron": "1.6.0" } }],
          "react"
        ],
        "plugins": ["transform-async-to-generator", "transform-es2015-classes", "react-hot-loader/babel"],
        "sourceMaps": "inline"
      }
    },
    "production": {
      "application/javascript": {
        "presets": [
          ["env", { "targets": { "electron": "1.6.0" } }],
          "react"
        ],
        "plugins": ["transform-async-to-generator", "transform-es2015-classes"],
        "sourceMaps": "none"
      }
    }
  }
}

and adding "es2017-node6" reports an error:

> rm2-react@1.0.0 start C:\www\rm2-react
> electron-forge start

√ Checking your system
√ Locating Application
√ Preparing native dependencies
√ Launching Application

App threw an error during load
Error: Couldn't find preset "es2017-node6" relative to directory "C:\\www\\rm2-react\\src"
    at C:\www\rm2-react\node_modules\babel-core\lib\transformation\file\options\option-manager.js:293:19
    at Array.map (native)
    at OptionManager.resolvePresets (C:\www\rm2-react\node_modules\babel-core\lib\transformation\file\options\option-manager.js:275:20)
    at OptionManager.mergePresets (C:\www\rm2-react\node_modules\babel-core\lib\transformation\file\options\option-manager.js:264:10)
    at OptionManager.mergeOptions (C:\www\rm2-react\node_modules\babel-core\lib\transformation\file\options\option-manager.js:249:14)
    at OptionManager.init (C:\www\rm2-react\node_modules\babel-core\lib\transformation\file\options\option-manager.js:368:12)
    at File.initOptions (C:\www\rm2-react\node_modules\babel-core\lib\transformation\file\index.js:212:65)
    at new File (C:\www\rm2-react\node_modules\babel-core\lib\transformation\file\index.js:135:24)
    at Pipeline.transform (C:\www\rm2-react\node_modules\babel-core\lib\transformation\pipeline.js:46:16)
    at BabelCompiler.compileSync (C:\www\rm2-react\node_modules\electron-compilers\lib\js\babel.js:81:26)
{
  "env": {
    "development": {
      "application/javascript": {
        "presets": [
          ["env", { "targets": { "electron": "1.6.0" } }],
          "react", "es2017-node6"
        ],
        "plugins": ["transform-async-to-generator", "transform-es2015-classes", "react-hot-loader/babel"],
        "sourceMaps": "inline"
      }
    },
    "production": {
      "application/javascript": {
        "presets": [
          ["env", { "targets": { "electron": "1.6.0" } }],
          "react"
        ],
        "plugins": ["transform-async-to-generator", "transform-es2015-classes"],
        "sourceMaps": "none"
      }
    }
  }
}
mnemanja commented 6 years ago

This was my bad, I've removed the app.jsx call from the render method.

Returning it back made HMR work again.

mnemanja commented 6 years ago

Changing app.jsx does update the view, but the previously mentioned behavior is still present when changing the css where changes do not get applied to the view. I can see the changes only after manual refresh.

Same goes for the index.html, but this is not that important since this file will not be changed often.

This is my implementation for the css:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  <link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body style="overflow: hidden; background-color: rgba(0,0,0,0); margin: 0" >
  <div id="App"></div>
</body>

<script type="text/jsx">
import React from 'react';
import ReactDOM from 'react-dom';
import {AppContainer} from 'react-hot-loader';

const render = () => {
  const App = require('./app').default;
  ReactDOM.render(<AppContainer><App /></AppContainer>, document.getElementById('App'));
  console.log('wtf');
}

render();
if (module.hot) {
  module.hot.accept(render);
}
</script>
</html>

*`DEBUG=,-babel npm start`**:

$ DEBUG=*,-babel npm start

> rm2-react@1.0.0 start C:\www\rm2-react
> electron-forge start

√ Checking your system
2017-10-20T15:17:16.954Z electron-forge:runtime-config setting key: verbose to value: false
2017-10-20T15:17:18.673Z electron-forge:project-resolver searching for project in: C:\www\rm2-react
2017-10-20T15:17:18.680Z electron-forge:project-resolver electron-forge compatible package.json found in C:\www\rm2-react\package.json
√ Locating Application
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild rebuilding with args: { '0':
   { buildPath: 'C:\\www\\rm2-react',
     electronVersion: '1.7.9',
     arch: 'x64' } }
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild rebuilding with args: C:\www\rm2-react 1.7.9 x64 [] false https://atom.io/download/electron [ 'prod', 'optional' ]
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\electron-compile
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\electron-devtools-installer
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\electron-squirrel-startup
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\react
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\react-dom
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\react-hot-loader
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\electron-compile\node_modules\yargs
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\react-hot-loader\node_modules\source-map
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\@paulcbetts\mime-types
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\@types\node
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\btoa
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\debug
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\lru-cache
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\mkdirp
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\pify
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\rimraf
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\spawn-rx
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\yargs
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\rxjs
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\7zip
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\cross-unzip
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\semver
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\fbjs
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\loose-envify
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\object-assign
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\prop-types
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\create-react-class
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\babel-template
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\global
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\react-deep-force-update
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\react-proxy
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\redbox-react
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\source-map
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\mkdirp\node_modules\minimist
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\electron-compile\node_modules\window-size
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\electron-compile\node_modules\yargs-parser
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\fbjs\node_modules\core-js
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\pseudomap
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\minimist
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\yallist
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\glob
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\camelcase
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\ms
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\decamelize
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\cliui
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\get-caller-file
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\lodash.assign
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\os-locale
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\read-pkg-up
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\require-main-filename
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\require-directory
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\set-blocking
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\string-width
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\window-size
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\which-module
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\y18n
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\yargs-parser
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\symbol-observable
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\core-js
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\isomorphic-fetch
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\promise
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\setimmediate
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\ua-parser-js
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\js-tokens
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\@paulcbetts\mime-db
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\babel-types
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\babel-runtime
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\babel-traverse
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\babylon
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\error-stack-parser
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\sourcemapped-stacktrace
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\lodash
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\min-document
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\process
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\fs.realpath
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\inflight
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\inherits
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\minimatch
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\once
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\path-is-absolute
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\find-up
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\read-pkg
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\strip-ansi
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\lcid
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\wrap-ansi
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\is-fullwidth-code-point
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\code-point-at
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\asap
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\node-fetch
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\whatwg-fetch
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\esutils
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\to-fast-properties
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\babel-code-frame
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\babel-messages
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\globals
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\invariant
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\stackframe
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\regenerator-runtime
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\dom-walk
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\find-up\node_modules\path-exists
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\wrappy
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\brace-expansion
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\load-json-file
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\normalize-package-data
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\path-type
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\ansi-regex
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\pinkie-promise
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\path-exists
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\number-is-nan
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\encoding
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\is-stream
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\invert-kv
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\chalk
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\brace-expansion\node_modules\balanced-match
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\hosted-git-info
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\is-builtin-module
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\validate-npm-package-license
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\graceful-fs
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\chalk\node_modules\supports-color
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\parse-json
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\strip-bom
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\concat-map
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\balanced-match
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\pinkie
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\iconv-lite
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\ansi-styles
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\escape-string-regexp
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\has-ansi
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\supports-color
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\builtin-modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\spdx-correct
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\spdx-expression-parse
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\error-ex
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\is-utf8
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\has-flag
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\is-arrayish
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild exploring C:\www\rm2-react\node_modules\spdx-license-ids
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild identified prod deps: Set {
  'electron-compile': true,
  'electron-devtools-installer': true,
  'electron-squirrel-startup': true,
  react: true,
  'react-dom': true,
  'react-hot-loader': true,
  '@paulcbetts/mime-types': true,
  '@types/node': true,
  btoa: true,
  debug: true,
  'lru-cache': true,
  mkdirp: true,
  pify: true,
  rimraf: true,
  rxjs: true,
  'spawn-rx': true,
  yargs: true,
  '7zip': true,
  'cross-unzip': true,
  semver: true,
  fbjs: true,
  'loose-envify': true,
  'object-assign': true,
  'prop-types': true,
  'create-react-class': true,
  'babel-template': true,
  global: true,
  'react-deep-force-update': true,
  'react-proxy': true,
  'redbox-react': true,
  'source-map': true,
  cliui: true,
  decamelize: true,
  'get-caller-file': true,
  'lodash.assign': true,
  'os-locale': true,
  'read-pkg-up': true,
  'require-directory': true,
  'require-main-filename': true,
  'set-blocking': true,
  'string-width': true,
  'which-module': true,
  'window-size': true,
  y18n: true,
  'yargs-parser': true,
  '@paulcbetts/mime-db': true,
  pseudomap: true,
  yallist: true,
  minimist: true,
  glob: true,
  camelcase: true,
  ms: true,
  'symbol-observable': true,
  'core-js': true,
  'isomorphic-fetch': true,
  promise: true,
  setimmediate: true,
  'ua-parser-js': true,
  'js-tokens': true,
  'babel-runtime': true,
  'babel-traverse': true,
  'babel-types': true,
  babylon: true,
  lodash: true,
  'error-stack-parser': true,
  'sourcemapped-stacktrace': true,
  'min-document': true,
  process: true,
  'fs.realpath': true,
  inflight: true,
  inherits: true,
  minimatch: true,
  once: true,
  'path-is-absolute': true,
  'find-up': true,
  'read-pkg': true,
  'strip-ansi': true,
  'wrap-ansi': true,
  lcid: true,
  'code-point-at': true,
  'is-fullwidth-code-point': true,
  asap: true,
  'node-fetch': true,
  'whatwg-fetch': true,
  esutils: true,
  'to-fast-properties': true,
  'babel-code-frame': true,
  'babel-messages': true,
  globals: true,
  invariant: true,
  'regenerator-runtime': true,
  stackframe: true,
  'dom-walk': true,
  wrappy: true,
  'brace-expansion': true,
  'load-json-file': true,
  'normalize-package-data': true,
  'path-type': true,
  'path-exists': true,
  'pinkie-promise': true,
  'ansi-regex': true,
  'number-is-nan': true,
  encoding: true,
  'is-stream': true,
  'invert-kv': true,
  chalk: true,
  'hosted-git-info': true,
  'is-builtin-module': true,
  'validate-npm-package-license': true,
  'graceful-fs': true,
  'parse-json': true,
  'strip-bom': true,
  'balanced-match': true,
  'concat-map': true,
  pinkie: true,
  'iconv-lite': true,
  'ansi-styles': true,
  'escape-string-regexp': true,
  'has-ansi': true,
  'supports-color': true,
  'builtin-modules': true,
  'spdx-correct': true,
  'spdx-expression-parse': true,
  'error-ex': true,
  'is-utf8': true,
  'has-flag': true,
  'is-arrayish': true,
  'spdx-license-ids': true }
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\@paulcbetts
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\@types
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\acorn-globals\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\agent-base\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\archiver\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\are-we-there-yet\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\asar\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\autoprefixer\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\aws-sdk\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\babel-core\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\babel-generator\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\babel-preset-env\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\babel-register\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\babel-template\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\babel-traverse\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\brace-expansion\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\buffer\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\camelcase-keys\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\caniuse-api\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\chalk\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\clean-css\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\concat-stream\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\constantinople\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\create-react-class\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\cross-spawn\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\cryptiles\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\cson\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\cson-parser\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\css\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\decompress-zip\node_modules
Fri, 20 Oct 2017 15:17:18 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\detective-less\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\detective-sass\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\detective-scss\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\dom-serializer\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron\node_modules\@types
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-compile\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-compile\node_modules\yargs\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-compilers\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-devtools-installer\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-download\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-download\node_modules\fs-extra\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-forge\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-packager\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-packager\node_modules\electron-download\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-packager\node_modules\sumchecker\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-prebuilt-compile\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-rebuild\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-windows-store\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-winstaller\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-winstaller\node_modules\asar\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\electron-winstaller\node_modules\fs-extra\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\escodegen\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\external-editor\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\extract-zip\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\fbjs\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\find-up\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\flatten-packages\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\fs-extra\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\fstream\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\get-package-info\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\github\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\global-prefix\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\gonzales-pe\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\handlebars\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\htmlparser2\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\http-signature\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\inquirer\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\invariant\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\istanbul\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\jade\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\js-yaml\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\jsdom\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\jsdom\node_modules\escodegen\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\jstransformer\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\less\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\log-symbols\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\mkdirp\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\mksnapshot\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\mksnapshot\node_modules\fs-extra\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\multiline\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\nib\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\node-gyp\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\node-source-walk\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\normalize-package-data\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\npm-run-path\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\npmlog\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\nugget\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\optimist\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\optionator\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\ora\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\plist\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\postcss-merge-rules\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\postcss-svgo\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\prop-types\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\react\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\react-dom\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\react-hot-loader\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\redent\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\regexpu-core\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\regjsparser\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\request\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\s3\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\sander\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\sass-lookup\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\sourcemapped-stacktrace\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\stylus\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\stylus-lookup\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\svgo\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\svgo\node_modules\js-yaml\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\tabtab\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\tar-stream\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\temp\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\through2\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\touch\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\tough-cookie\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\transformers\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\uglify-js\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\vue-template-compiler\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\with\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\yargs\node_modules
Fri, 20 Oct 2017 15:17:19 GMT electron-rebuild scanning: C:\www\rm2-react\node_modules\zip-stream\node_modules
√ Preparing native dependencies
2017-10-20T15:17:19.697Z electron-forge:hook could not find hook: generateAssets
√ Launching Application

Fri, 20 Oct 2017 15:17:20 GMT electron-compile:config-parser Found a .compilerc at C:\www\rm2-react\.compilerc, using it
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:inline-html Setting up inline HTML compilers: []
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:config-parser Using default cache directory: C:\Users\NEMANJ~1.MIL\AppData\Local\Temp\compileCache_84d93d4bc8fa6bdb580bfc69597ac810
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:config-parser Creating CompilerHost: {"appRoot":"C:\\www\\rm2-react","options":{"application/javascript":{"presets":[["env",{"targets":{"electron":"1.6.0"}}],"react"],"plugins":["transform-async-to-generator","transform-es2015-classes","react-hot-loader/babel"],"sourceMaps":"inline"}},"rootCacheDir":null,"sourceMapPath":null}, rootCacheDir = C:\Users\NEMANJ~1.MIL\AppData\Local\Temp\compileCache_84d93d4bc8fa6bdb580bfc69597ac810, sourceMapPath = null
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react' => 'C:\www\rm2-react'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:config-parser Setting options for application/javascript: {"presets":[["env",{"targets":{"electron":"1.6.0"}}],"react"],"plugins":["transform-async-to-generator","transform-es2015-classes","react-hot-loader/babel"],"sourceMaps":"inline"}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:config-parser Created compiler host with options: {"appRoot":"C:\\www\\rm2-react","options":{"application/javascript":{"presets":[["env",{"targets":{"electron":"1.6.0"}}],"react"],"plugins":["transform-async-to-generator","transform-es2015-classes","react-hot-loader/babel"],"sourceMaps":"inline"}},"rootCacheDir":null,"sourceMapPath":null}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\src\index.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\src\index.js' => 'C:\www\rm2-react\src\index.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /src/index.js: {"ctime":1508512280457,"size":1996,"info":{"hash":"ffb94a62901e272a8b0b34868a785ee952b77416","isMinified":false,"isInNodeModules":false,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compile-cache Fetching C:\www\rm2-react\src\index.js from cache
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compile-cache Path for BabelCompiler: C:\Users\NEMANJ~1.MIL\AppData\Local\Temp\compileCache_84d93d4bc8fa6bdb580bfc69597ac810\93508d5ae2eeff19779932403f875293dc95ba3f
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compile-cache Set up with parameters: {"name":"BabelCompiler","version":"6.26.0","options":{"presets":[["env",{"targets":{"electron":"1.6.0"}}],"react"],"plugins":["transform-async-to-generator","transform-es2015-classes","react-hot-loader/babel"],"sourceMaps":"inline"}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\electron-devtools-installer\dist\index.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\electron-devtools-installer\dist\index.js' => 'C:\www\rm2-react\node_modules\electron-devtools-installer\dist\index.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/electron-devtools-installer/dist/index.js: {"ctime":1508487586483,"size":4822,"info":{"hash":"bd5101d7918669e959b83fdbc75fbff2b333779b","isMinified":false,"isInNodeModules":true,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\electron-devtools-installer\dist\downloadChromeExtension.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\electron-devtools-installer\dist\downloadChromeExtension.js' => 'C:\www\rm2-react\node_modules\electron-devtools-installer\dist\downloadChromeExtension.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/electron-devtools-installer/dist/downloadChromeExtension.js: {"ctime":1508487586480,"size":2312,"info":{"hash":"6ce3ef83ec05c6789662f76eba65c6529dc7b3f8","isMinified":false,"isInNodeModules":true,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\cross-unzip\index.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\cross-unzip\index.js' => 'C:\www\rm2-react\node_modules\cross-unzip\index.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/cross-unzip/index.js: {"ctime":1508487586198,"size":1534,"info":{"hash":"089749d59d44af941b57bebcd2268fb1e89b9f14","isMinified":false,"isInNodeModules":true,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\electron-devtools-installer\dist\utils.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\electron-devtools-installer\dist\utils.js' => 'C:\www\rm2-react\node_modules\electron-devtools-installer\dist\utils.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/electron-devtools-installer/dist/utils.js: {"ctime":1508487586485,"size":1927,"info":{"hash":"8d6222eecb426046a71f2ad5c51541df615a4a3a","isMinified":false,"isInNodeModules":true,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\electron\dist\resources\electron.asar\browser\api\net.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\electron\dist\resources\electron.asar\browser\api\net.js' => 'C:\www\rm2-react\node_modules\electron\dist\resources\electron.asar\browser\api\net.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/electron/dist/resources/electron.asar/browser/api/net.js: {"ctime":1508512640046,"size":9782,"info":{"hash":"4f6ff7666dd1e07290c57016d1c683b049f2931e","isMinified":false,"isInNodeModules":true,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\electron-compile\lib\live-reload.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\electron-compile\lib\live-reload.js' => 'C:\www\rm2-react\node_modules\electron-compile\lib\live-reload.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/electron-compile/lib/live-reload.js: {"ctime":1508487510443,"size":10517,"info":{"hash":"29a13f656a84f1c4efa567411c8e583352887445","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\electron-compile\lib\pathwatcher-rx.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\electron-compile\lib\pathwatcher-rx.js' => 'C:\www\rm2-react\node_modules\electron-compile\lib\pathwatcher-rx.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/electron-compile/lib/pathwatcher-rx.js: {"ctime":1508487510449,"size":4152,"info":{"hash":"2f69fa86b2b2e5ddb247f029171fda9f85bda8a2","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\publish.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\publish.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\publish.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/publish.js: {"ctime":1508487512874,"size":211,"info":{"hash":"2be7b610760f6fbd6b6e186aa0610af51dd3e873","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\publish.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\publish.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\publish.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/publish.js: {"ctime":1508487511096,"size":968,"info":{"hash":"10f81a928e715d5a738176a8db1f9a08d5abd605","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\publish.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\publish.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\publish.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/publish.js: {"ctime":1508487511639,"size":1123,"info":{"hash":"7d9441393b37d2a9496350d8b3d8a0f1706289b7","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\multicast.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\multicast.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\multicast.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/multicast.js: {"ctime":1508487511606,"size":2608,"info":{"hash":"40c9f44fc55784075a99e47daa19fb5ae292d411","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\ConnectableObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\ConnectableObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\ConnectableObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/ConnectableObservable.js: {"ctime":1508487510589,"size":6690,"info":{"hash":"e9d9fad3a258c3be248d5c4d1c067cb12832642c","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\refCount.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\refCount.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\refCount.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/refCount.js: {"ctime":1508487511673,"size":3375,"info":{"hash":"6f20911a3198b3afd4ce85ce9fcbc6f2c52b3941","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\electron-compile\lib\custom-operators.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\electron-compile\lib\custom-operators.js' => 'C:\www\rm2-react\node_modules\electron-compile\lib\custom-operators.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/electron-compile/lib/custom-operators.js: {"ctime":1508487510434,"size":4966,"info":{"hash":"5ec61f2c70c756080dc46a8377501cad4b785806","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\scheduler\async.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\scheduler\async.js' => 'C:\www\rm2-react\node_modules\rxjs\scheduler\async.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/scheduler/async.js: {"ctime":1508487511924,"size":1482,"info":{"hash":"7577b57afe208c428e8870ada8ae6c996d269f53","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\scheduler\AsyncAction.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\scheduler\AsyncAction.js' => 'C:\www\rm2-react\node_modules\rxjs\scheduler\AsyncAction.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/scheduler/AsyncAction.js: {"ctime":1508487511929,"size":5709,"info":{"hash":"a0ca3426c186e14b8b0effbde202c3a40be4b5c6","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\scheduler\Action.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\scheduler\Action.js' => 'C:\www\rm2-react\node_modules\rxjs\scheduler\Action.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/scheduler/Action.js: {"ctime":1508487511891,"size":1638,"info":{"hash":"9bb09f69325d2b9a722f3da5de1e900f654e5d33","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\scheduler\AsyncScheduler.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\scheduler\AsyncScheduler.js' => 'C:\www\rm2-react\node_modules\rxjs\scheduler\AsyncScheduler.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/scheduler/AsyncScheduler.js: {"ctime":1508487511935,"size":1713,"info":{"hash":"0c312171191857a2ee74c4f6c15141c360f2e948","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\Scheduler.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\Scheduler.js' => 'C:\www\rm2-react\node_modules\rxjs\Scheduler.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/Scheduler.js: {"ctime":1508487510218,"size":1885,"info":{"hash":"9db064f131d09b91e7ca27d6c4d960c5de6511c7","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\observable\range.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\observable\range.js' => 'C:\www\rm2-react\node_modules\rxjs\add\observable\range.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/observable/range.js: {"ctime":1508487512509,"size":191,"info":{"hash":"0512c5052aa6ff274d777f1ad5571616caf9a51c","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\range.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\range.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\range.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/range.js: {"ctime":1508487510756,"size":159,"info":{"hash":"50a432d0c3ef6ef92d33b34df7d4ebc48aa7f738","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\RangeObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\RangeObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\RangeObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/RangeObservable.js: {"ctime":1508487510761,"size":3471,"info":{"hash":"41ea09445e4aa64f1e8af5a1edb9264bd8f117b1","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\observable\timer.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\observable\timer.js' => 'C:\www\rm2-react\node_modules\rxjs\add\observable\timer.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/observable/timer.js: {"ctime":1508487512523,"size":191,"info":{"hash":"c106876ffbee4f47881c3e4334cc9de879ec68f3","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\timer.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\timer.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\timer.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/timer.js: {"ctime":1508487510787,"size":159,"info":{"hash":"7d8596a051ef1527d113b2712da6d17403581216","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\TimerObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\TimerObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\TimerObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/TimerObservable.js: {"ctime":1508487510790,"size":4462,"info":{"hash":"64b2dcc798b386d5f97c3f2f3f4ce55a019341f9","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\isNumeric.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\isNumeric.js' => 'C:\www\rm2-react\node_modules\rxjs\util\isNumeric.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/isNumeric.js: {"ctime":1508487512118,"size":501,"info":{"hash":"e5fab7ebc2bf82daf5f8cb67c384454424dd0153","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\isScheduler.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\isScheduler.js' => 'C:\www\rm2-react\node_modules\rxjs\util\isScheduler.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/isScheduler.js: {"ctime":1508487512137,"size":178,"info":{"hash":"182f1df6fcefd0de7614777cd434d52aaa9c1303","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\isDate.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\isDate.js' => 'C:\www\rm2-react\node_modules\rxjs\util\isDate.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/isDate.js: {"ctime":1508487512104,"size":152,"info":{"hash":"769d85b55b488f2544844b42393921ad297f1d2b","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\mergeMap.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\mergeMap.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\mergeMap.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/mergeMap.js: {"ctime":1508487512811,"size":282,"info":{"hash":"4346d5eb9540aac467182253c81d5c4b29b9455a","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\mergeMap.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\mergeMap.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\mergeMap.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/mergeMap.js: {"ctime":1508487511048,"size":2770,"info":{"hash":"844c7c85a54568eee2a0fec48acb462ca53efc0b","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\mergeMap.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\mergeMap.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\mergeMap.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/mergeMap.js: {"ctime":1508487511589,"size":6653,"info":{"hash":"180c3ba21d612307d4ed2e6409f9c9abc7d0f43c","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\subscribeToResult.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\subscribeToResult.js' => 'C:\www\rm2-react\node_modules\rxjs\util\subscribeToResult.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/subscribeToResult.js: {"ctime":1508487512187,"size":3031,"info":{"hash":"89fc081546d09154a96d57b862bfe49c8858cf34","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\isArrayLike.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\isArrayLike.js' => 'C:\www\rm2-react\node_modules\rxjs\util\isArrayLike.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/isArrayLike.js: {"ctime":1508487512099,"size":137,"info":{"hash":"e54e51f0390182f0473a199363a6e4dc084859dc","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\isPromise.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\isPromise.js' => 'C:\www\rm2-react\node_modules\rxjs\util\isPromise.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/isPromise.js: {"ctime":1508487512132,"size":207,"info":{"hash":"07e5fa140f85c5f86fc310a2e3f0a84b54e8e798","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\symbol\iterator.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\symbol\iterator.js' => 'C:\www\rm2-react\node_modules\rxjs\symbol\iterator.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/symbol/iterator.js: {"ctime":1508487511988,"size":1339,"info":{"hash":"e0c4def7b5b68ceb0cef5172c74ce472c2231658","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\InnerSubscriber.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\InnerSubscriber.js' => 'C:\www\rm2-react\node_modules\rxjs\InnerSubscriber.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/InnerSubscriber.js: {"ctime":1508487509851,"size":1289,"info":{"hash":"901cebb0d253e704db95b286f092c14c1328bba2","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\OuterSubscriber.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\OuterSubscriber.js' => 'C:\www\rm2-react\node_modules\rxjs\OuterSubscriber.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/OuterSubscriber.js: {"ctime":1508487510200,"size":1107,"info":{"hash":"fc8aac47fed6b26451aaa766f5705d009bb2c645","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\retryWhen.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\retryWhen.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\retryWhen.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/retryWhen.js: {"ctime":1508487512917,"size":223,"info":{"hash":"ea0f3afaf55bd7b82ff3643d0f6abad0ffdeeba6","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\retryWhen.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\retryWhen.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\retryWhen.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/retryWhen.js: {"ctime":1508487511143,"size":1000,"info":{"hash":"b63b6db57b6f22a444200ad1d3380cdbf654522f","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\retryWhen.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\retryWhen.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\retryWhen.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/retryWhen.js: {"ctime":1508487511692,"size":4252,"info":{"hash":"b973cd0c1de66c1e296e84576b2bb22a6c075135","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\switch.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\switch.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\switch.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/switch.js: {"ctime":1508487512986,"size":268,"info":{"hash":"bb727c89669c182671e7ecdf0d9241c6a4c61301","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\switch.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\switch.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\switch.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/switch.js: {"ctime":1508487511219,"size":2083,"info":{"hash":"41884ccb668b345f086af01d01304dc388e49645","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\switchAll.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\switchAll.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\switchAll.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/switchAll.js: {"ctime":1508487511768,"size":250,"info":{"hash":"f93007aaee33a490c9b96a30cc64b7b4d74f88a5","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\switchMap.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\switchMap.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\switchMap.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/switchMap.js: {"ctime":1508487511772,"size":5946,"info":{"hash":"ef97ab45b7168c447763129a27e8c737c3a34198","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\identity.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\identity.js' => 'C:\www\rm2-react\node_modules\rxjs\util\identity.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/identity.js: {"ctime":1508487512084,"size":118,"info":{"hash":"458743b03ccfbb10b937930e2b191ec80bfe6f9c","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\zip.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\zip.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\zip.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/zip.js: {"ctime":1508487513093,"size":192,"info":{"hash":"0a454a982d2f43f13453e457844cb49f2e95f98c","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\zip.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\zip.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\zip.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/zip.js: {"ctime":1508487511335,"size":452,"info":{"hash":"42a43ec7ef01fd819545d06e53cb4f55d99c6854","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\zip.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\zip.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\zip.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/zip.js: {"ctime":1508487511881,"size":9493,"info":{"hash":"ac2f37808660402144a23dba5e0b0fb2c7f1d2f8","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\ArrayObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\ArrayObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\ArrayObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/ArrayObservable.js: {"ctime":1508487510552,"size":4576,"info":{"hash":"5d023fad465ebc6d4962593081e0eb15d31e1434","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\ScalarObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\ScalarObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\ScalarObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/ScalarObservable.js: {"ctime":1508487510769,"size":1879,"info":{"hash":"9708c7299cbb6a634beeea10e2f1fbcfeb6ceb51","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\EmptyObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\EmptyObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\EmptyObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/EmptyObservable.js: {"ctime":1508487510609,"size":2972,"info":{"hash":"f493a019e69ae9f770bdaa844964252e5f4ec9fd","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\observable\defer.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\observable\defer.js' => 'C:\www\rm2-react\node_modules\rxjs\add\observable\defer.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/observable/defer.js: {"ctime":1508487512422,"size":191,"info":{"hash":"8cd726e8d3d34cb1768658eb1b2ab811bc9e9d27","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\defer.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\defer.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\defer.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/defer.js: {"ctime":1508487510597,"size":159,"info":{"hash":"69830c4005ace02c9662e70c36b4b5d6671d6778","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\DeferObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\DeferObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\DeferObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/DeferObservable.js: {"ctime":1508487510600,"size":3989,"info":{"hash":"b2facbd2ee3f77e06a02fbed69bc3ae6f33793f0","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\observable\empty.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\observable\empty.js' => 'C:\www\rm2-react\node_modules\rxjs\add\observable\empty.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/observable/empty.js: {"ctime":1508487512428,"size":191,"info":{"hash":"62429e813392a17cca501c9245481a87d4d3f017","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\empty.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\empty.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\empty.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/empty.js: {"ctime":1508487510606,"size":159,"info":{"hash":"bae3effefcaae17fd14c11516361bc382f0ec398","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\observable\fromPromise.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\observable\fromPromise.js' => 'C:\www\rm2-react\node_modules\rxjs\add\observable\fromPromise.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/observable/fromPromise.js: {"ctime":1508487512455,"size":227,"info":{"hash":"f79c6ad39f09f3cbab73f305de0caff58d620652","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\fromPromise.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\fromPromise.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\fromPromise.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/fromPromise.js: {"ctime":1508487510665,"size":179,"info":{"hash":"7693fe76c7341eefb9525a87907c82a227b8859e","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\observable\PromiseObservable.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\observable\PromiseObservable.js' => 'C:\www\rm2-react\node_modules\rxjs\observable\PromiseObservable.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/observable/PromiseObservable.js: {"ctime":1508487510749,"size":4676,"info":{"hash":"1955360497fed87059fe0221ef0dd4cc7f0ab258","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\catch.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\catch.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\catch.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/catch.js: {"ctime":1508487512577,"size":259,"info":{"hash":"609cf695d3c8711927072ac28b05623b114723dc","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\catch.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\catch.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\catch.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/catch.js: {"ctime":1508487510851,"size":2049,"info":{"hash":"3c8b23030324a8b39ff6a720e8c11204d92abc40","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\catchError.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\catchError.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\catchError.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/catchError.js: {"ctime":1508487511377,"size":4041,"info":{"hash":"71695f38d00a8599916fbf4721fe48454ff3e4d2","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\filter.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\filter.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\filter.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/filter.js: {"ctime":1508487512724,"size":205,"info":{"hash":"c04a3d09dedaf5127b1b828dbdb2feffff9c1690","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\filter.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\filter.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\filter.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/filter.js: {"ctime":1508487510960,"size":1994,"info":{"hash":"efc7c2b8ed2fac28159380d4b5d31595f5d17bb9","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\filter.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\filter.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\filter.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/filter.js: {"ctime":1508487511499,"size":3612,"info":{"hash":"30ff1e3214df461f228340b104d035b56c9f9fcc","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\switchMap.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\switchMap.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\switchMap.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/switchMap.js: {"ctime":1508487512992,"size":223,"info":{"hash":"da9389dbfa3bd283026db01a29ab64906daf027e","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\switchMap.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\switchMap.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\switchMap.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/switchMap.js: {"ctime":1508487511225,"size":2692,"info":{"hash":"bf9347b59140c5417d95a3fe9940ced224e710ed","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\add\operator\timeout.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\add\operator\timeout.js' => 'C:\www\rm2-react\node_modules\rxjs\add\operator\timeout.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/add/operator/timeout.js: {"ctime":1508487513036,"size":211,"info":{"hash":"025271e1b93ec022554541c6fb57b3636cf2b757","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operator\timeout.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operator\timeout.js' => 'C:\www\rm2-react\node_modules\rxjs\operator\timeout.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operator/timeout.js: {"ctime":1508487511273,"size":3634,"info":{"hash":"1486a1f7773993b105c303573f7cb589f9c991f7","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\operators\timeout.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\operators\timeout.js' => 'C:\www\rm2-react\node_modules\rxjs\operators\timeout.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/operators/timeout.js: {"ctime":1508487511826,"size":6584,"info":{"hash":"790d5377d419b105e1686392032a09cff50f38c2","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:compiler-host Compiling C:\www\rm2-react\node_modules\rxjs\util\TimeoutError.js
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\node_modules\rxjs\util\TimeoutError.js' => 'C:\www\rm2-react\node_modules\rxjs\util\TimeoutError.js'
Fri, 20 Oct 2017 15:17:20 GMT electron-compile:file-change-cache Cache entry for /node_modules/rxjs/util/TimeoutError.js: {"ctime":1508487512199,"size":776,"info":{"hash":"d6139ab2228a22b15aa95814f50bdb8ea2074017","isMinified":false,"isInNodeModules":true,"hasSourceMap":true,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/index.html
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compiler-host Compiling C:/www/rm2-react/src/index.html
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:/www/rm2-react/src/index.html' => 'C:\www\rm2-react\src\index.html'
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:file-change-cache Cache entry for /src/index.html: {"ctime":1508512459463,"size":691,"info":{"hash":"a22a171e9b21edaecb498943e041af79f10f696e","isMinified":false,"isInNodeModules":false,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compile-cache Fetching C:/www/rm2-react/src/index.html from cache
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\src\index.html' => 'C:\www\rm2-react\src\index.html'
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compile-cache Path for InlineHtmlCompiler: C:\Users\NEMANJ~1.MIL\AppData\Local\Temp\compileCache_84d93d4bc8fa6bdb580bfc69597ac810\ebbeac2ce84da83b22b0c3c7f56b2cf07dc8d634
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compile-cache Set up with parameters: {"name":"InlineHtmlCompiler","version":"5.9.0,","options":{}}
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/__magic__file__to__help__electron__compile.js
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/style.css
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compiler-host Compiling C:/www/rm2-react/src/style.css
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:/www/rm2-react/src/style.css' => 'C:\www\rm2-react\src\style.css'
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:file-change-cache Cache entry for /src/style.css: {"ctime":1508512482030,"size":20,"info":{"hash":"ab9daff6b76d3839e86edb943f5a812cc2f5d54a","isMinified":false,"isInNodeModules":false,"hasSourceMap":false,"isFileBinary":false}}
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compiler-host Falling back to passthrough compiler for C:/www/rm2-react/src/style.css
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compile-cache Fetching C:/www/rm2-react/src/style.css from cache
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:sanitize-paths Cache miss for cachedRealpath: 'C:\www\rm2-react\src\style.css' => 'C:\www\rm2-react\src\style.css'
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compile-cache Path for PassthroughCompiler: C:\Users\NEMANJ~1.MIL\AppData\Local\Temp\compileCache_84d93d4bc8fa6bdb580bfc69597ac810\4e1a5069de66f1b2f52927c2388cdfb0756c1285
Fri, 20 Oct 2017 15:17:21 GMT electron-compile:compile-cache Set up with parameters: {"name":"PassthroughCompiler","version":"5.9.0","options":{}}
[12472:1020/171721.842:ERROR:CONSOLE(7323)] "Extension server error: Object not found: <top>", source: chrome-devtools://devtools/bundled/inspector.js (7323)
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/index.html
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:compiler-host Compiling C:/www/rm2-react/src/index.html
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:compile-cache Fetching C:/www/rm2-react/src/index.html from cache
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/Observable.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/toSubscriber.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/Subscriber.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/isFunction.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/Subscription.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/isObject.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/tryCatch.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/UnsubscriptionError.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/Observer.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/observable.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/pipe.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/noop.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/Subject.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/ObjectUnsubscribedError.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/SubjectSubscription.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/ErrorObservable.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/map.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/sorcery.cjs.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/sander.cjs.js.map
Fri, 20 Oct 2017 15:17:22 GMT electron-compile:protocol-hook Intercepting url file:///C:/www/rm2-react/src/es6-promise.map
skrichten commented 6 years ago

+1 same issue here using Less

bradharms commented 6 years ago

Same issue using sass.

ngphi commented 6 years ago

+1 with SASS

Glinkis commented 6 years ago

+1 with SCSS