electron / packager

Customize and package your Electron app with OS-specific bundles (.app, .exe, etc.) via JS or CLI
https://npm.im/@electron/packager
BSD 2-Clause "Simplified" License
184 stars 18 forks source link

pruned module list not correctly populated when dir is a relative path #820

Closed revington closed 6 years ago

revington commented 6 years ago

Please describe your issue: My builds include 0 deps unless I add the --no-prune argument. Of course I'm talking abouth production dependencies.

Console output when you run electron-packager with the environment variable DEBUG=electron-packager. Please include the stack trace if one exists.

  electron-packager Electron Packager 12.0.0 +0ms
  electron-packager Node v8.5.0 +2ms
  electron-packager Host Operating system: linux (x64) +0ms
  electron-packager Packager Options: {"_":["."],"all":false,"deref-symlinks":true,"derefSymlinks":true,"download":{"strictSSL":true},"overwrite":true,"prune":true,"quiet":false,"dir":".","protocols":[]} +0ms
  electron-packager Target Platforms: linux +0ms
  electron-packager Target Architectures: x64 +0ms
  electron-packager Inferring application name from name in /tmp/electron-quick-start/package.json +0ms
  electron-packager Inferring appVersion from version in /tmp/electron-quick-start/package.json +0ms
  electron-packager Inferring target Electron version from electron in /tmp/electron-quick-start/package.json +4ms
  electron-packager Application name: electron-quick-start +30ms
  electron-packager Target Electron version: 1.8.4 +0ms
  electron-packager Ignored path regular expressions: [ '/\\.git($|/)',
  '/node_modules/\\.bin($|/)',
  '\\.o(bj)?$',
  '/tmp/electron-packager' ] +0ms
  electron-packager Downloading Electron with options {"strictSSL":true,"platform":"linux","arch":"x64","version":"1.8.4"} +0ms
Packaging app for platform linux x64 using electron v1.8.4
  electron-packager Creating /tmp/electron-packager/linux-x64-template +221ms
  electron-packager Extracting /home/pedro/.electron/electron-v1.8.4-linux-x64.zip to /tmp/electron-packager/linux-x64-template +0ms
  electron-packager Initializing app in /tmp/electron-packager/linux-x64/electron-quick-start-linux-x64 from /tmp/electron-packager/linux-x64-template template +0ms
  electron-packager Ignored paths based on the out param: [ '/tmp/electron-quick-start/electron-quick-start-darwin-x64',
  '/tmp/electron-quick-start/electron-quick-start-linux-ia32',
  '/tmp/electron-quick-start/electron-quick-start-linux-x64',
  '/tmp/electron-quick-start/electron-quick-start-linux-armv7l',
  '/tmp/electron-quick-start/electron-quick-start-linux-arm64',
  '/tmp/electron-quick-start/electron-quick-start-linux-mips64el',
  '/tmp/electron-quick-start/electron-quick-start-mas-x64',
  '/tmp/electron-quick-start/electron-quick-start-win32-ia32',
  '/tmp/electron-quick-start/electron-quick-start-win32-x64' ] +2s
  electron-packager Renaming electron to electron-quick-start in /tmp/electron-packager/linux-x64/electron-quick-start-linux-x64 +94ms
  electron-packager Moving /tmp/electron-packager/linux-x64/electron-quick-start-linux-x64 to /tmp/electron-quick-start/electron-quick-start-linux-x64 +0ms
Wrote new app to /tmp/electron-quick-start/electron-quick-start-linux-x64

What command line arguments are you passing? Alternatively, if you are using the API, what parameters are you passing to the packager() function?

DEBUG=electron-packager ./node_modules/.bin/electron-packager .  --overwrite

Please provide either a failing minimal testcase (with a link to the code) or detailed steps to reproduce your problem. Using electron-quick-start is a good starting point.

git clone https://github.com/electron/electron-quick-start && cd electron-quick-start
npm install 
npm install --save-dev electron-packager
npm install mysql
# add 'const mysql = require('mysql');' to main.js
DEBUG=electron-packager ./node_modules/.bin/electron-packager .  --overwrite

./electron-quick-start-linux-x64/electron-quick-start
A JavaScript error occurred in the main process
Uncaught Exception:
Error: Cannot find module 'mysql'
    at Module._resolveFilename (module.js:485:15)
    at Function.Module._resolveFilename (/tmp/electron-quick-start/electron-quick-start-linux-x64/resources/electron.asar/common/reset-search-paths.js:35:12)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/tmp/electron-quick-start/electron-quick-start-linux-x64/resources/app/main.js:2:15)
    at Object.<anonymous> (/tmp/electron-quick-start/electron-quick-start-linux-x64/resources/app/main.js:63:3)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
welcome[bot] commented 6 years ago

👋 Thanks for opening your first issue here! If you have a question about using Electron Packager, read the support docs. If you're reporting a 🐞 bug, please make sure you include steps to reproduce it. Development and issue triage is community-driven, so please be patient and we will get back to you as soon as we can.

To help make it easier for us to investigate your issue, please follow the contributing guidelines.

malept commented 6 years ago

Your repro instructions don't save mysql in the dependencies section of package.json, can you try when running npm install --save mysql instead?

revington commented 6 years ago

new versions of npm save by default. Anyway, I did it as you told, double checked my package.json, run electron-packager again and faced the same problem. Here is my package.json

{
  "name": "electron-quick-start",
  "version": "1.0.0",
  "description": "A minimal Electron application",
  "main": "main.js",
  "scripts": {
    "start": "electron ."
  },
  "repository": "https://github.com/electron/electron-quick-start",
  "keywords": [
    "Electron",
    "quick",
    "start",
    "tutorial",
    "demo"
  ],
  "author": "GitHub",
  "license": "CC0-1.0",
  "devDependencies": {
    "electron": "^1.8.4",
    "electron-packager": "^12.0.0"
  },
  "dependencies": {
    "mysql": "^2.15.0"
  }
}
malept commented 6 years ago

Could you rerun Packager with DEBUG=electron-packager,flora-colossus and post the output?

revington commented 6 years ago

Yep

2018-04-07T14:37:19.315Z electron-packager Electron Packager 12.0.0
2018-04-07T14:37:19.316Z electron-packager Node v9.11.1
2018-04-07T14:37:19.316Z electron-packager Host Operating system: linux (x64)
2018-04-07T14:37:19.316Z electron-packager Packager Options: {"_":["."],"all":false,"deref-symlinks":true,"derefSymlinks":true,"download":{"strictSSL":true},"overwrite":true,"prune":true,"quiet":false,"dir":".","protocols":[]}
2018-04-07T14:37:19.316Z electron-packager Target Platforms: linux
2018-04-07T14:37:19.316Z electron-packager Target Architectures: x64
2018-04-07T14:37:19.338Z electron-packager Inferring application name from name in /tmp/electron-quick-start/package.json
2018-04-07T14:37:19.338Z electron-packager Inferring appVersion from version in /tmp/electron-quick-start/package.json
2018-04-07T14:37:19.341Z electron-packager Inferring target Electron version from electron in /tmp/electron-quick-start/package.json
2018-04-07T14:37:19.341Z electron-packager Application name: electron-quick-start
2018-04-07T14:37:19.341Z electron-packager Target Electron version: 1.8.4
2018-04-07T14:37:19.341Z electron-packager Ignored path regular expressions: [ '/\\.git($|/)',
  '/node_modules/\\.bin($|/)',
  '\\.o(bj)?$',
  '/tmp/electron-packager' ]
2018-04-07T14:37:19.345Z electron-packager Downloading Electron with options {"strictSSL":true,"platform":"linux","arch":"x64","version":"1.8.4"}
2018-04-07T14:37:19.570Z electron-packager Removing /tmp/electron-quick-start/electron-quick-start-linux-x64 due to setting overwrite: true
Packaging app for platform linux x64 using electron v1.8.4
2018-04-07T14:37:19.580Z electron-packager Creating /tmp/electron-packager/linux-x64-template
2018-04-07T14:37:19.581Z electron-packager Extracting /home/pedro/.electron/electron-v1.8.4-linux-x64.zip to /tmp/electron-packager/linux-x64-template
2018-04-07T14:37:21.625Z electron-packager Initializing app in /tmp/electron-packager/linux-x64/electron-quick-start-linux-x64 from /tmp/electron-packager/linux-x64-template template
2018-04-07T14:37:21.626Z electron-packager Ignored paths based on the out param: [ '/tmp/electron-quick-start/electron-quick-start-darwin-x64',
  '/tmp/electron-quick-start/electron-quick-start-linux-ia32',
  '/tmp/electron-quick-start/electron-quick-start-linux-x64',
  '/tmp/electron-quick-start/electron-quick-start-linux-armv7l',
  '/tmp/electron-quick-start/electron-quick-start-linux-arm64',
  '/tmp/electron-quick-start/electron-quick-start-linux-mips64el',
  '/tmp/electron-quick-start/electron-quick-start-mas-x64',
  '/tmp/electron-quick-start/electron-quick-start-win32-ia32',
  '/tmp/electron-quick-start/electron-quick-start-win32-x64' ]
2018-04-07T14:37:21.627Z flora-colossus creating walker with rootModule=.
2018-04-07T14:37:21.632Z flora-colossus starting tree walk
2018-04-07T14:37:21.633Z flora-colossus walk reached: .  Type is: ROOT
2018-04-07T14:37:21.634Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mysql  Type is: PROD
2018-04-07T14:37:21.635Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/bignumber.js  Type is: PROD
2018-04-07T14:37:21.635Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mysql/node_modules/readable-stream  Type is: PROD
2018-04-07T14:37:21.636Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/core-util-is  Type is: PROD
2018-04-07T14:37:21.636Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inherits  Type is: PROD
2018-04-07T14:37:21.637Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mysql/node_modules/isarray  Type is: PROD
2018-04-07T14:37:21.637Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mysql/node_modules/process-nextick-args  Type is: PROD
2018-04-07T14:37:21.637Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/safe-buffer  Type is: PROD
2018-04-07T14:37:21.638Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mysql/node_modules/string_decoder  Type is: PROD
2018-04-07T14:37:21.638Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/safe-buffer  Type is: PROD
2018-04-07T14:37:21.638Z flora-colossus already walked this route
2018-04-07T14:37:21.638Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/util-deprecate  Type is: PROD
2018-04-07T14:37:21.639Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/safe-buffer  Type is: PROD
2018-04-07T14:37:21.639Z flora-colossus already walked this route
2018-04-07T14:37:21.639Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/sqlstring  Type is: PROD
2018-04-07T14:37:21.639Z flora-colossus we're still at the beginning, walking down the dev route
2018-04-07T14:37:21.639Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron  Type is: DEV
2018-04-07T14:37:21.640Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/@types/node  Type is: DEV
2018-04-07T14:37:21.640Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-download  Type is: DEV
2018-04-07T14:37:21.640Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.641Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ms  Type is: DEV
2018-04-07T14:37:21.641Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/fs-extra  Type is: DEV
2018-04-07T14:37:21.641Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.642Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/jsonfile  Type is: DEV
2018-04-07T14:37:21.642Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.642Z flora-colossus already walked this route
2018-04-07T14:37:21.642Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.642Z flora-colossus already walked this route
2018-04-07T14:37:21.642Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/klaw  Type is: DEV
2018-04-07T14:37:21.642Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.642Z flora-colossus already walked this route
2018-04-07T14:37:21.643Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.643Z flora-colossus already walked this route
2018-04-07T14:37:21.643Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-is-absolute  Type is: DEV
2018-04-07T14:37:21.643Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/rimraf  Type is: DEV
2018-04-07T14:37:21.643Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/glob  Type is: DEV
2018-04-07T14:37:21.644Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/fs.realpath  Type is: DEV
2018-04-07T14:37:21.644Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inflight  Type is: DEV
2018-04-07T14:37:21.644Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/once  Type is: DEV
2018-04-07T14:37:21.644Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/wrappy  Type is: DEV
2018-04-07T14:37:21.645Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/wrappy  Type is: DEV
2018-04-07T14:37:21.645Z flora-colossus already walked this route
2018-04-07T14:37:21.645Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inherits  Type is: DEV
2018-04-07T14:37:21.645Z flora-colossus already walked this route
2018-04-07T14:37:21.645Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimatch  Type is: DEV
2018-04-07T14:37:21.645Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/brace-expansion  Type is: DEV
2018-04-07T14:37:21.646Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/balanced-match  Type is: DEV
2018-04-07T14:37:21.646Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/concat-map  Type is: DEV
2018-04-07T14:37:21.646Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/once  Type is: DEV
2018-04-07T14:37:21.646Z flora-colossus already walked this route
2018-04-07T14:37:21.646Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-is-absolute  Type is: DEV
2018-04-07T14:37:21.646Z flora-colossus already walked this route
2018-04-07T14:37:21.646Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/home-path  Type is: DEV
2018-04-07T14:37:21.647Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimist  Type is: DEV
2018-04-07T14:37:21.647Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/nugget  Type is: DEV
2018-04-07T14:37:21.647Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.647Z flora-colossus already walked this route
2018-04-07T14:37:21.648Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimist  Type is: DEV
2018-04-07T14:37:21.648Z flora-colossus already walked this route
2018-04-07T14:37:21.648Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pretty-bytes  Type is: DEV
2018-04-07T14:37:21.648Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-stdin  Type is: DEV
2018-04-07T14:37:21.648Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/meow  Type is: DEV
2018-04-07T14:37:21.649Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/camelcase-keys  Type is: DEV
2018-04-07T14:37:21.649Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/camelcase  Type is: DEV
2018-04-07T14:37:21.649Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/map-obj  Type is: DEV
2018-04-07T14:37:21.650Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/decamelize  Type is: DEV
2018-04-07T14:37:21.650Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/loud-rejection  Type is: DEV
2018-04-07T14:37:21.650Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/currently-unhandled  Type is: DEV
2018-04-07T14:37:21.650Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/array-find-index  Type is: DEV
2018-04-07T14:37:21.651Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/signal-exit  Type is: DEV
2018-04-07T14:37:21.651Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/map-obj  Type is: DEV
2018-04-07T14:37:21.651Z flora-colossus already walked this route
2018-04-07T14:37:21.651Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimist  Type is: DEV
2018-04-07T14:37:21.651Z flora-colossus already walked this route
2018-04-07T14:37:21.651Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/normalize-package-data  Type is: DEV
2018-04-07T14:37:21.652Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/hosted-git-info  Type is: DEV
2018-04-07T14:37:21.652Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-builtin-module  Type is: DEV
2018-04-07T14:37:21.652Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/builtin-modules  Type is: DEV
2018-04-07T14:37:21.653Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/semver  Type is: DEV
2018-04-07T14:37:21.653Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/validate-npm-package-license  Type is: DEV
2018-04-07T14:37:21.653Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/spdx-correct  Type is: DEV
2018-04-07T14:37:21.653Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/spdx-expression-parse  Type is: DEV
2018-04-07T14:37:21.654Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/spdx-exceptions  Type is: DEV
2018-04-07T14:37:21.654Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/spdx-license-ids  Type is: DEV
2018-04-07T14:37:21.656Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/spdx-license-ids  Type is: DEV
2018-04-07T14:37:21.656Z flora-colossus already walked this route
2018-04-07T14:37:21.656Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/spdx-expression-parse  Type is: DEV
2018-04-07T14:37:21.656Z flora-colossus already walked this route
2018-04-07T14:37:21.656Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/object-assign  Type is: DEV
2018-04-07T14:37:21.657Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/read-pkg-up  Type is: DEV
2018-04-07T14:37:21.657Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/find-up  Type is: DEV
2018-04-07T14:37:21.657Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-exists  Type is: DEV
2018-04-07T14:37:21.657Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pinkie-promise  Type is: DEV
2018-04-07T14:37:21.658Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pinkie  Type is: DEV
2018-04-07T14:37:21.658Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pinkie-promise  Type is: DEV
2018-04-07T14:37:21.658Z flora-colossus already walked this route
2018-04-07T14:37:21.658Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/read-pkg  Type is: DEV
2018-04-07T14:37:21.658Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/load-json-file  Type is: DEV
2018-04-07T14:37:21.659Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.659Z flora-colossus already walked this route
2018-04-07T14:37:21.659Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/parse-json  Type is: DEV
2018-04-07T14:37:21.659Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/error-ex  Type is: DEV
2018-04-07T14:37:21.659Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-arrayish  Type is: DEV
2018-04-07T14:37:21.660Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pify  Type is: DEV
2018-04-07T14:37:21.660Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pinkie-promise  Type is: DEV
2018-04-07T14:37:21.660Z flora-colossus already walked this route
2018-04-07T14:37:21.660Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/strip-bom  Type is: DEV
2018-04-07T14:37:21.660Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-utf8  Type is: DEV
2018-04-07T14:37:21.661Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/normalize-package-data  Type is: DEV
2018-04-07T14:37:21.661Z flora-colossus already walked this route
2018-04-07T14:37:21.661Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-type  Type is: DEV
2018-04-07T14:37:21.661Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.661Z flora-colossus already walked this route
2018-04-07T14:37:21.661Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pify  Type is: DEV
2018-04-07T14:37:21.661Z flora-colossus already walked this route
2018-04-07T14:37:21.661Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pinkie-promise  Type is: DEV
2018-04-07T14:37:21.661Z flora-colossus already walked this route
2018-04-07T14:37:21.662Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/redent  Type is: DEV
2018-04-07T14:37:21.662Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/indent-string  Type is: DEV
2018-04-07T14:37:21.662Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/repeating  Type is: DEV
2018-04-07T14:37:21.662Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-finite  Type is: DEV
2018-04-07T14:37:21.663Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/number-is-nan  Type is: DEV
2018-04-07T14:37:21.663Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/strip-indent  Type is: DEV
2018-04-07T14:37:21.663Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-stdin  Type is: DEV
2018-04-07T14:37:21.663Z flora-colossus already walked this route
2018-04-07T14:37:21.663Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/trim-newlines  Type is: DEV
2018-04-07T14:37:21.664Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/progress-stream  Type is: DEV
2018-04-07T14:37:21.664Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/speedometer  Type is: DEV
2018-04-07T14:37:21.664Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/through2  Type is: DEV
2018-04-07T14:37:21.664Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/readable-stream  Type is: DEV
2018-04-07T14:37:21.665Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/core-util-is  Type is: DEV
2018-04-07T14:37:21.665Z flora-colossus already walked this route
2018-04-07T14:37:21.665Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inherits  Type is: DEV
2018-04-07T14:37:21.665Z flora-colossus already walked this route
2018-04-07T14:37:21.665Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/isarray  Type is: DEV
2018-04-07T14:37:21.665Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/string_decoder  Type is: DEV
2018-04-07T14:37:21.665Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/xtend  Type is: DEV
2018-04-07T14:37:21.666Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/object-keys  Type is: DEV
2018-04-07T14:37:21.666Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/request  Type is: DEV
2018-04-07T14:37:21.666Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/aws-sign2  Type is: DEV
2018-04-07T14:37:21.667Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/aws4  Type is: DEV
2018-04-07T14:37:21.667Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/caseless  Type is: DEV
2018-04-07T14:37:21.667Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/combined-stream  Type is: DEV
2018-04-07T14:37:21.668Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/delayed-stream  Type is: DEV
2018-04-07T14:37:21.668Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/extend  Type is: DEV
2018-04-07T14:37:21.668Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/forever-agent  Type is: DEV
2018-04-07T14:37:21.668Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/form-data  Type is: DEV
2018-04-07T14:37:21.669Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/asynckit  Type is: DEV
2018-04-07T14:37:21.670Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/combined-stream  Type is: DEV
2018-04-07T14:37:21.670Z flora-colossus already walked this route
2018-04-07T14:37:21.670Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mime-types  Type is: DEV
2018-04-07T14:37:21.670Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mime-db  Type is: DEV
2018-04-07T14:37:21.670Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/har-validator  Type is: DEV
2018-04-07T14:37:21.671Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ajv  Type is: DEV
2018-04-07T14:37:21.671Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/co  Type is: DEV
2018-04-07T14:37:21.671Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/fast-deep-equal  Type is: DEV
2018-04-07T14:37:21.672Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/fast-json-stable-stringify  Type is: DEV
2018-04-07T14:37:21.672Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/json-schema-traverse  Type is: DEV
2018-04-07T14:37:21.672Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/har-schema  Type is: DEV
2018-04-07T14:37:21.673Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/hawk  Type is: DEV
2018-04-07T14:37:21.673Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/boom  Type is: DEV
2018-04-07T14:37:21.674Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/hoek  Type is: DEV
2018-04-07T14:37:21.674Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/cryptiles  Type is: DEV
2018-04-07T14:37:21.674Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/cryptiles/node_modules/boom  Type is: DEV
2018-04-07T14:37:21.674Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/hoek  Type is: DEV
2018-04-07T14:37:21.674Z flora-colossus already walked this route
2018-04-07T14:37:21.675Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/hoek  Type is: DEV
2018-04-07T14:37:21.675Z flora-colossus already walked this route
2018-04-07T14:37:21.675Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/sntp  Type is: DEV
2018-04-07T14:37:21.675Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/hoek  Type is: DEV
2018-04-07T14:37:21.675Z flora-colossus already walked this route
2018-04-07T14:37:21.675Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/http-signature  Type is: DEV
2018-04-07T14:37:21.675Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/assert-plus  Type is: DEV
2018-04-07T14:37:21.676Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/jsprim  Type is: DEV
2018-04-07T14:37:21.676Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/assert-plus  Type is: DEV
2018-04-07T14:37:21.676Z flora-colossus already walked this route
2018-04-07T14:37:21.676Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/extsprintf  Type is: DEV
2018-04-07T14:37:21.677Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/json-schema  Type is: DEV
2018-04-07T14:37:21.677Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/verror  Type is: DEV
2018-04-07T14:37:21.677Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/assert-plus  Type is: DEV
2018-04-07T14:37:21.677Z flora-colossus already walked this route
2018-04-07T14:37:21.677Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/core-util-is  Type is: DEV
2018-04-07T14:37:21.677Z flora-colossus already walked this route
2018-04-07T14:37:21.677Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/extsprintf  Type is: DEV
2018-04-07T14:37:21.677Z flora-colossus already walked this route
2018-04-07T14:37:21.678Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/sshpk  Type is: DEV
2018-04-07T14:37:21.678Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/asn1  Type is: DEV
2018-04-07T14:37:21.678Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/assert-plus  Type is: DEV
2018-04-07T14:37:21.678Z flora-colossus already walked this route
2018-04-07T14:37:21.678Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/bcrypt-pbkdf  Type is: DEV
2018-04-07T14:37:21.679Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/tweetnacl  Type is: DEV
2018-04-07T14:37:21.679Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/dashdash  Type is: DEV
2018-04-07T14:37:21.679Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/assert-plus  Type is: DEV
2018-04-07T14:37:21.679Z flora-colossus already walked this route
2018-04-07T14:37:21.679Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ecc-jsbn  Type is: DEV
2018-04-07T14:37:21.680Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/jsbn  Type is: DEV
2018-04-07T14:37:21.680Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/getpass  Type is: DEV
2018-04-07T14:37:21.680Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/assert-plus  Type is: DEV
2018-04-07T14:37:21.680Z flora-colossus already walked this route
2018-04-07T14:37:21.681Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/jsbn  Type is: DEV
2018-04-07T14:37:21.681Z flora-colossus already walked this route
2018-04-07T14:37:21.681Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/tweetnacl  Type is: DEV
2018-04-07T14:37:21.681Z flora-colossus already walked this route
2018-04-07T14:37:21.681Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/bcrypt-pbkdf  Type is: DEV
2018-04-07T14:37:21.681Z flora-colossus already walked this route
2018-04-07T14:37:21.681Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ecc-jsbn  Type is: DEV
2018-04-07T14:37:21.681Z flora-colossus already walked this route
2018-04-07T14:37:21.681Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/jsbn  Type is: DEV
2018-04-07T14:37:21.681Z flora-colossus already walked this route
2018-04-07T14:37:21.681Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/tweetnacl  Type is: DEV
2018-04-07T14:37:21.681Z flora-colossus already walked this route
2018-04-07T14:37:21.681Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-typedarray  Type is: DEV
2018-04-07T14:37:21.682Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/isstream  Type is: DEV
2018-04-07T14:37:21.682Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/json-stringify-safe  Type is: DEV
2018-04-07T14:37:21.682Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mime-types  Type is: DEV
2018-04-07T14:37:21.682Z flora-colossus already walked this route
2018-04-07T14:37:21.682Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/oauth-sign  Type is: DEV
2018-04-07T14:37:21.683Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/performance-now  Type is: DEV
2018-04-07T14:37:21.683Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/qs  Type is: DEV
2018-04-07T14:37:21.683Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/safe-buffer  Type is: DEV
2018-04-07T14:37:21.683Z flora-colossus already walked this route
2018-04-07T14:37:21.684Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/stringstream  Type is: DEV
2018-04-07T14:37:21.684Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/tough-cookie  Type is: DEV
2018-04-07T14:37:21.684Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/punycode  Type is: DEV
2018-04-07T14:37:21.685Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/tunnel-agent  Type is: DEV
2018-04-07T14:37:21.685Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/safe-buffer  Type is: DEV
2018-04-07T14:37:21.685Z flora-colossus already walked this route
2018-04-07T14:37:21.685Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/uuid  Type is: DEV
2018-04-07T14:37:21.685Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/single-line-log  Type is: DEV
2018-04-07T14:37:21.686Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/string-width  Type is: DEV
2018-04-07T14:37:21.686Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/code-point-at  Type is: DEV
2018-04-07T14:37:21.686Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-fullwidth-code-point  Type is: DEV
2018-04-07T14:37:21.686Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/number-is-nan  Type is: DEV
2018-04-07T14:37:21.687Z flora-colossus already walked this route
2018-04-07T14:37:21.687Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/strip-ansi  Type is: DEV
2018-04-07T14:37:21.687Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ansi-regex  Type is: DEV
2018-04-07T14:37:21.687Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/throttleit  Type is: DEV
2018-04-07T14:37:21.688Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-exists  Type is: DEV
2018-04-07T14:37:21.688Z flora-colossus already walked this route
2018-04-07T14:37:21.688Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/rc  Type is: DEV
2018-04-07T14:37:21.688Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/deep-extend  Type is: DEV
2018-04-07T14:37:21.688Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ini  Type is: DEV
2018-04-07T14:37:21.689Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimist  Type is: DEV
2018-04-07T14:37:21.689Z flora-colossus already walked this route
2018-04-07T14:37:21.689Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/strip-json-comments  Type is: DEV
2018-04-07T14:37:21.689Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/semver  Type is: DEV
2018-04-07T14:37:21.689Z flora-colossus already walked this route
2018-04-07T14:37:21.689Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/sumchecker  Type is: DEV
2018-04-07T14:37:21.690Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.690Z flora-colossus already walked this route
2018-04-07T14:37:21.690Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/es6-promise  Type is: DEV
2018-04-07T14:37:21.690Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/extract-zip  Type is: DEV
2018-04-07T14:37:21.690Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/concat-stream  Type is: DEV
2018-04-07T14:37:21.691Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inherits  Type is: DEV
2018-04-07T14:37:21.691Z flora-colossus already walked this route
2018-04-07T14:37:21.691Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/concat-stream/node_modules/readable-stream  Type is: DEV
2018-04-07T14:37:21.691Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/core-util-is  Type is: DEV
2018-04-07T14:37:21.691Z flora-colossus already walked this route
2018-04-07T14:37:21.691Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inherits  Type is: DEV
2018-04-07T14:37:21.691Z flora-colossus already walked this route
2018-04-07T14:37:21.692Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/concat-stream/node_modules/isarray  Type is: DEV
2018-04-07T14:37:21.692Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/process-nextick-args  Type is: DEV
2018-04-07T14:37:21.692Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/safe-buffer  Type is: DEV
2018-04-07T14:37:21.692Z flora-colossus already walked this route
2018-04-07T14:37:21.692Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/concat-stream/node_modules/string_decoder  Type is: DEV
2018-04-07T14:37:21.693Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/safe-buffer  Type is: DEV
2018-04-07T14:37:21.693Z flora-colossus already walked this route
2018-04-07T14:37:21.693Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/util-deprecate  Type is: DEV
2018-04-07T14:37:21.693Z flora-colossus already walked this route
2018-04-07T14:37:21.693Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/typedarray  Type is: DEV
2018-04-07T14:37:21.694Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.694Z flora-colossus already walked this route
2018-04-07T14:37:21.694Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mkdirp  Type is: DEV
2018-04-07T14:37:21.694Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mkdirp/node_modules/minimist  Type is: DEV
2018-04-07T14:37:21.694Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/yauzl  Type is: DEV
2018-04-07T14:37:21.694Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/fd-slicer  Type is: DEV
2018-04-07T14:37:21.695Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pend  Type is: DEV
2018-04-07T14:37:21.695Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager  Type is: DEV
2018-04-07T14:37:21.695Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/asar  Type is: DEV
2018-04-07T14:37:21.696Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/chromium-pickle-js  Type is: DEV
2018-04-07T14:37:21.696Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/commander  Type is: DEV
2018-04-07T14:37:21.696Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/cuint  Type is: DEV
2018-04-07T14:37:21.696Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/asar/node_modules/glob  Type is: DEV
2018-04-07T14:37:21.697Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inflight  Type is: DEV
2018-04-07T14:37:21.697Z flora-colossus already walked this route
2018-04-07T14:37:21.697Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/inherits  Type is: DEV
2018-04-07T14:37:21.697Z flora-colossus already walked this route
2018-04-07T14:37:21.697Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimatch  Type is: DEV
2018-04-07T14:37:21.697Z flora-colossus already walked this route
2018-04-07T14:37:21.697Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/once  Type is: DEV
2018-04-07T14:37:21.697Z flora-colossus already walked this route
2018-04-07T14:37:21.697Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-is-absolute  Type is: DEV
2018-04-07T14:37:21.697Z flora-colossus already walked this route
2018-04-07T14:37:21.698Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimatch  Type is: DEV
2018-04-07T14:37:21.698Z flora-colossus already walked this route
2018-04-07T14:37:21.698Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mkdirp  Type is: DEV
2018-04-07T14:37:21.698Z flora-colossus already walked this route
2018-04-07T14:37:21.698Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mksnapshot  Type is: DEV
2018-04-07T14:37:21.698Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/decompress-zip  Type is: DEV
2018-04-07T14:37:21.698Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/binary  Type is: DEV
2018-04-07T14:37:21.699Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/buffers  Type is: DEV
2018-04-07T14:37:21.699Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/chainsaw  Type is: DEV
2018-04-07T14:37:21.699Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/traverse  Type is: DEV
2018-04-07T14:37:21.700Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.700Z flora-colossus already walked this route
2018-04-07T14:37:21.700Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mkpath  Type is: DEV
2018-04-07T14:37:21.700Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/nopt  Type is: DEV
2018-04-07T14:37:21.700Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/abbrev  Type is: DEV
2018-04-07T14:37:21.701Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/q  Type is: DEV
2018-04-07T14:37:21.701Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/readable-stream  Type is: DEV
2018-04-07T14:37:21.701Z flora-colossus already walked this route
2018-04-07T14:37:21.701Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/touch  Type is: DEV
2018-04-07T14:37:21.701Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/touch/node_modules/nopt  Type is: DEV
2018-04-07T14:37:21.702Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/abbrev  Type is: DEV
2018-04-07T14:37:21.702Z flora-colossus already walked this route
2018-04-07T14:37:21.702Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/mksnapshot/node_modules/fs-extra  Type is: DEV
2018-04-07T14:37:21.702Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.702Z flora-colossus already walked this route
2018-04-07T14:37:21.702Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/jsonfile  Type is: DEV
2018-04-07T14:37:21.702Z flora-colossus already walked this route
2018-04-07T14:37:21.702Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/klaw  Type is: DEV
2018-04-07T14:37:21.702Z flora-colossus already walked this route
2018-04-07T14:37:21.703Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-is-absolute  Type is: DEV
2018-04-07T14:37:21.703Z flora-colossus already walked this route
2018-04-07T14:37:21.703Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/rimraf  Type is: DEV
2018-04-07T14:37:21.703Z flora-colossus already walked this route
2018-04-07T14:37:21.703Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/request  Type is: DEV
2018-04-07T14:37:21.703Z flora-colossus already walked this route
2018-04-07T14:37:21.703Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/tmp  Type is: DEV
2018-04-07T14:37:21.703Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/os-tmpdir  Type is: DEV
2018-04-07T14:37:21.704Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.706Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ms  Type is: DEV
2018-04-07T14:37:21.706Z flora-colossus already walked this route
2018-04-07T14:37:21.706Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/electron-download  Type is: DEV
2018-04-07T14:37:21.706Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/electron-download/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.707Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ms  Type is: DEV
2018-04-07T14:37:21.707Z flora-colossus already walked this route
2018-04-07T14:37:21.707Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/env-paths  Type is: DEV
2018-04-07T14:37:21.707Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/electron-download/node_modules/fs-extra  Type is: DEV
2018-04-07T14:37:21.708Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.708Z flora-colossus already walked this route
2018-04-07T14:37:21.708Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/jsonfile  Type is: DEV
2018-04-07T14:37:21.708Z flora-colossus already walked this route
2018-04-07T14:37:21.708Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimist  Type is: DEV
2018-04-07T14:37:21.708Z flora-colossus already walked this route
2018-04-07T14:37:21.708Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/nugget  Type is: DEV
2018-04-07T14:37:21.708Z flora-colossus already walked this route
2018-04-07T14:37:21.709Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/path-exists  Type is: DEV
2018-04-07T14:37:21.709Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/rc  Type is: DEV
2018-04-07T14:37:21.709Z flora-colossus already walked this route
2018-04-07T14:37:21.709Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/semver  Type is: DEV
2018-04-07T14:37:21.709Z flora-colossus already walked this route
2018-04-07T14:37:21.709Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/sumchecker  Type is: DEV
2018-04-07T14:37:21.709Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/sumchecker/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.710Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ms  Type is: DEV
2018-04-07T14:37:21.710Z flora-colossus already walked this route
2018-04-07T14:37:21.710Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-osx-sign  Type is: DEV
2018-04-07T14:37:21.710Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/bluebird  Type is: DEV
2018-04-07T14:37:21.711Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/compare-version  Type is: DEV
2018-04-07T14:37:21.711Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.711Z flora-colossus already walked this route
2018-04-07T14:37:21.711Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/isbinaryfile  Type is: DEV
2018-04-07T14:37:21.711Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/minimist  Type is: DEV
2018-04-07T14:37:21.711Z flora-colossus already walked this route
2018-04-07T14:37:21.712Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/plist  Type is: DEV
2018-04-07T14:37:21.712Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/base64-js  Type is: DEV
2018-04-07T14:37:21.712Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/xmlbuilder  Type is: DEV
2018-04-07T14:37:21.712Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/xmldom  Type is: DEV
2018-04-07T14:37:21.713Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/extract-zip  Type is: DEV
2018-04-07T14:37:21.713Z flora-colossus already walked this route
2018-04-07T14:37:21.713Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/fs-extra  Type is: DEV
2018-04-07T14:37:21.713Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.713Z flora-colossus already walked this route
2018-04-07T14:37:21.713Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/fs-extra/node_modules/jsonfile  Type is: DEV
2018-04-07T14:37:21.714Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.714Z flora-colossus already walked this route
2018-04-07T14:37:21.714Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.714Z flora-colossus already walked this route
2018-04-07T14:37:21.714Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/universalify  Type is: DEV
2018-04-07T14:37:21.714Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/galactus  Type is: DEV
2018-04-07T14:37:21.715Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/galactus/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.715Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ms  Type is: DEV
2018-04-07T14:37:21.715Z flora-colossus already walked this route
2018-04-07T14:37:21.715Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/flora-colossus  Type is: DEV
2018-04-07T14:37:21.715Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/flora-colossus/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.716Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/ms  Type is: DEV
2018-04-07T14:37:21.716Z flora-colossus already walked this route
2018-04-07T14:37:21.716Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/flora-colossus/node_modules/fs-extra  Type is: DEV
2018-04-07T14:37:21.716Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.716Z flora-colossus already walked this route
2018-04-07T14:37:21.716Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/flora-colossus/node_modules/jsonfile  Type is: DEV
2018-04-07T14:37:21.717Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.717Z flora-colossus already walked this route
2018-04-07T14:37:21.717Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.717Z flora-colossus already walked this route
2018-04-07T14:37:21.717Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/universalify  Type is: DEV
2018-04-07T14:37:21.717Z flora-colossus already walked this route
2018-04-07T14:37:21.717Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/galactus/node_modules/fs-extra  Type is: DEV
2018-04-07T14:37:21.717Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.717Z flora-colossus already walked this route
2018-04-07T14:37:21.717Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/galactus/node_modules/jsonfile  Type is: DEV
2018-04-07T14:37:21.718Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.718Z flora-colossus already walked this route
2018-04-07T14:37:21.718Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.718Z flora-colossus already walked this route
2018-04-07T14:37:21.718Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/universalify  Type is: DEV
2018-04-07T14:37:21.718Z flora-colossus already walked this route
2018-04-07T14:37:21.718Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-package-info  Type is: DEV
2018-04-07T14:37:21.719Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/bluebird  Type is: DEV
2018-04-07T14:37:21.719Z flora-colossus already walked this route
2018-04-07T14:37:21.719Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/debug  Type is: DEV
2018-04-07T14:37:21.719Z flora-colossus already walked this route
2018-04-07T14:37:21.719Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/lodash.get  Type is: DEV
2018-04-07T14:37:21.719Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-package-info/node_modules/read-pkg-up  Type is: DEV
2018-04-07T14:37:21.719Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-package-info/node_modules/find-up  Type is: DEV
2018-04-07T14:37:21.720Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/locate-path  Type is: DEV
2018-04-07T14:37:21.720Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/p-locate  Type is: DEV
2018-04-07T14:37:21.720Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/p-limit  Type is: DEV
2018-04-07T14:37:21.720Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/p-try  Type is: DEV
2018-04-07T14:37:21.721Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/locate-path/node_modules/path-exists  Type is: DEV
2018-04-07T14:37:21.721Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-package-info/node_modules/read-pkg  Type is: DEV
2018-04-07T14:37:21.721Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-package-info/node_modules/load-json-file  Type is: DEV
2018-04-07T14:37:21.722Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/graceful-fs  Type is: DEV
2018-04-07T14:37:21.722Z flora-colossus already walked this route
2018-04-07T14:37:21.722Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/parse-json  Type is: DEV
2018-04-07T14:37:21.722Z flora-colossus already walked this route
2018-04-07T14:37:21.722Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pify  Type is: DEV
2018-04-07T14:37:21.722Z flora-colossus already walked this route
2018-04-07T14:37:21.722Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-package-info/node_modules/strip-bom  Type is: DEV
2018-04-07T14:37:21.722Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/normalize-package-data  Type is: DEV
2018-04-07T14:37:21.722Z flora-colossus already walked this route
2018-04-07T14:37:21.723Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/get-package-info/node_modules/path-type  Type is: DEV
2018-04-07T14:37:21.723Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/pify  Type is: DEV
2018-04-07T14:37:21.723Z flora-colossus already walked this route
2018-04-07T14:37:21.723Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/nodeify  Type is: DEV
2018-04-07T14:37:21.723Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-promise  Type is: DEV
2018-04-07T14:37:21.724Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/promise  Type is: DEV
2018-04-07T14:37:21.724Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/is-promise  Type is: DEV
2018-04-07T14:37:21.724Z flora-colossus already walked this route
2018-04-07T14:37:21.724Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/parse-author  Type is: DEV
2018-04-07T14:37:21.724Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/author-regex  Type is: DEV
2018-04-07T14:37:21.725Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/electron-packager/node_modules/pify  Type is: DEV
2018-04-07T14:37:21.725Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/plist  Type is: DEV
2018-04-07T14:37:21.725Z flora-colossus already walked this route
2018-04-07T14:37:21.725Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/rcedit  Type is: DEV
2018-04-07T14:37:21.725Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/resolve  Type is: DEV
2018-04-07T14:37:21.726Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/path-parse  Type is: DEV
2018-04-07T14:37:21.726Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/sanitize-filename  Type is: DEV
2018-04-07T14:37:21.726Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/truncate-utf8-bytes  Type is: DEV
2018-04-07T14:37:21.726Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/utf8-byte-length  Type is: DEV
2018-04-07T14:37:21.727Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/semver  Type is: DEV
2018-04-07T14:37:21.727Z flora-colossus already walked this route
2018-04-07T14:37:21.727Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/yargs-parser  Type is: DEV
2018-04-07T14:37:21.727Z flora-colossus walk reached: /tmp/electron-quick-start/node_modules/yargs-parser/node_modules/camelcase  Type is: DEV
2018-04-07T14:37:21.738Z electron-packager Renaming electron to electron-quick-start in /tmp/electron-packager/linux-x64/electron-quick-start-linux-x64
2018-04-07T14:37:21.739Z electron-packager Moving /tmp/electron-packager/linux-x64/electron-quick-start-linux-x64 to /tmp/electron-quick-start/electron-quick-start-linux-x64
Wrote new app to /tmp/electron-quick-start/electron-quick-start-linux-x64
revington commented 6 years ago

Also, if I run $tree electron-quick-start-linux-x64/resources on the resources I get:

├── app
│   ├── LICENSE.md
│   ├── README.md
│   ├── index.html
│   ├── main.js
│   ├── node_modules
│   │   └── @types
│   ├── package-lock.json
│   ├── package.json
│   └── renderer.js
└── electron.asar

3 directories, 8 files