Skip to content
This repository has been archived by the owner on Dec 13, 2019. It is now read-only.

Allocation failed - JavaScript heap out of memory #122

Closed
danikane opened this issue May 20, 2018 · 63 comments
Closed

Allocation failed - JavaScript heap out of memory #122

danikane opened this issue May 20, 2018 · 63 comments

Comments

@danikane
Copy link

Software version

OS: Windows 10 x64
Node: v8.9.4
NPM: v5.6.0
Any other software related to your bug:

What did you get as the error?

I just started a new Quasar project only and saw afterwards Quasar got an upgrade to 0.16.
Consistently getting the following in dev mode after few minutes of work with a fair number of code changes and subsequent recompiling from the dev server:

WAIT Compiling... 23:17:38

[================== ] 90% (chunk assets processing)
<--- Last few GCs --->

[2864:000001CF89080F90] 1318476 ms: Mark-sweep 1397.3 (1448.1) -> 1397.3 (1448.1) MB, 364.2 / 0.0 ms allocation failure GC in old space requested
[2864:000001CF89080F90] 1318836 ms: Mark-sweep 1397.3 (1448.1) -> 1395.9 (1429.7) MB, 359.7 / 0.0 ms last resort GC in old space requested
[2864:000001CF89080F90] 1319125 ms: Mark-sweep 1395.9 (1429.7) -> 1395.9 (1429.2) MB, 288.5 / 0.0 ms last resort GC in old space requested

<--- JS stacktrace --->

==== JS stack trace =========================================

Security context: 00000191239A5EE1
2: fromString(aka fromString) [buffer.js:314] [bytecode=0000039F4D2794E1 offset=164](this=00000060ACE82311 ,string=000000DEA4B96C99 <Very long string[7152076]>,encoding=00000191239B5CE1 <String[4]: utf8>)
4: from [buffer.js:177] [bytecode=0000039F4D278FE1 offset=11](this=0000024BC4D361B1 <JSFunction Buffer (sfi = 0000026D21602849)>,value=000000DEA4B96C99 <Very long string[71...

FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
1: node_module_register
2: v8::internal::FatalProcessOutOfMemory
3: v8::internal::FatalProcessOutOfMemory
4: v8::internal::Factory::NewRawTwoByteString
5: v8::internal::Smi::SmiPrint
6: v8::internal::AllocationSpaceName
7: v8::String::WriteUtf8
8: v8::internal::PagedSpace::SetUp
9: node::Buffer::New
10: node::Buffer::New
11: v8::internal::CompilerDispatcherTracer::Estimate
12: v8::internal::CompilerDispatcher::RemoveJob
13: v8::internal::CompilerDispatcher::RemoveJob
14: v8::internal::CompilerDispatcher::RemoveJob
15: 000001DC663847A1

What were you expecting?

No errors.

What steps did you take, to get the error?

Nothing, just started a new quasar project as usual. quasar init etc...

Could be related to:
webpack/webpack#6389

I have 16 GB of RAM so memory was never an issue, maybe webpack 4 is hitting some treshold or just leaking memory.

@nothingismagick
Copy link
Contributor

Thanks for reporting this. It is quite strange. Please upgrade NPM and NODE and let us know exactly which version of quasar you are running.

@danikane
Copy link
Author

danikane commented May 21, 2018

Quasar CLI is v0.16 - the latest. Both global and local. I was surprised that I was getting such errors so I looked up what's latest for Quasar on GitHub only to find it was released 4 hours ago. 😄

I can upgrade to Node v8.11.2 since it's the last LTS.

@danikane
Copy link
Author

danikane commented May 21, 2018

Ok, so I upgraded to Node v8.11.2 and NPM v6.0.1 and still managed to get that error by poking hard (switching back and forth between commits to trigger recompile). 😆
At some point Webpack really started to struggle (in terms of speed) to rebuild the app...

Since quasar-cli has grown into something bigger I can't really fiddle with webpack settings/plugins to test out different configurations.

Putting this one here just for reference:
webpack/webpack#6812

btw I'm using Yarn.

@nothingismagick
Copy link
Contributor

@danikane Are you importing massively large files, doing stuff with breakpoints / styl ?

@danikane
Copy link
Author

danikane commented May 21, 2018

Nope, just a regular barebone Quasar project with:

    framework: 'all',
    animations: 'all',

I just edited the index.vue page. The very same configuration I have always used for a new project.
Same machine, same stuff, never had issues, always a great experience working with the Quasar framework.

I guess this issue hasn't gained much attention yet because people are still on 0.15.

@rstoenescu
Copy link
Member

This is a webpack or a webpack-loader/plugin issue. Quasar CLI is not at fault here. Note that Quasar CLI v0.16 jumped to using webpack 4.

@danikane
Copy link
Author

danikane commented May 21, 2018

@rstoenescu That's exactly what I'm saying. :) I also think webpack 4 is the culprit here. Still Quasar CLI jumped on that wagon so I thought I'd let you know.

I watched the node dev server process spiking up in CPU usage and the memory footprint increased.
I guess webpack 3 had a better garbage collection mechanisms since several issues like this have been reported over time.
Could be uglify or postcss, who knows...

@nothingismagick
Copy link
Contributor

nothingismagick commented May 21, 2018

webpack/webpack#7314

They suggest looking into adding the clean-webpack-plugin

@danikane
Copy link
Author

danikane commented May 21, 2018

I'd say this one:
webpack/webpack#6929
Some of the plugins are misbehaving...

@rstoenescu
Copy link
Member

rstoenescu commented May 21, 2018

Would you be so kind as to make one small test, pls?
In your project folder, edit node_modules/quasar-cli/lib/build/webpack-config.js at line 297 (cache: true make it cache: false). This is just to determine if UglifyJS could be the culprit.

DO NOT run any npm/yarn commands after this change.

@danikane
Copy link
Author

danikane commented May 21, 2018

Razvan, I still managed to crash it. 😢 I also commented it out completely, but crashed again.
Right around it hits 1.6 GB memory usage it starts to slow down then all it takes are a few line changes and it crashes.
This time the stacktrace mentioned the html-webpack-plugin https://github.com/jantimon/html-webpack-plugin so I set its cache to false as well, but still the same result.

Remember, this is only on dev server, build passes ok, so right now this is minor inconvenience IMO.

@nothingismagick
Copy link
Contributor

@danikane - Can you list all of the webpack plugins and babel loaders that you are using?

@danikane
Copy link
Author

Do a **quasar init ** with Quasar CLI v0.16 and you'll have them.
Like I already said - fresh Quasar project with edits in index.vue, that's all.
I'm not using anything, because since v0.15 Webpack configuration is out of sight, embedded in the CLI.

@nothingismagick
Copy link
Contributor

nothingismagick commented May 23, 2018

framework: all, animations:all -> that might be the cause of the issue here. And you potentially might need to increase your memory available to node...

@danikane
Copy link
Author

All due respect, but I've always used framework: all, animations:all for development and never hit a snag.

You are right, node's memory limit is by default ~1.76 GB on x64, I would increase it if I could, except it has to be passed as a flag to the node executable and I don't know where to do it. 😄
If there is an option to do it via some environment variable ...

Theoretically even if I set it at 8 GB it would still hit the threshold at some point. BTW the projects starts at ~300 MB footprint.

@nothingismagick
Copy link
Contributor

I am not trying to be disrespectful. :) But perhaps you remember the docs?
https://quasar-framework.org/components/introduction-for-beginners.html#Importing-All-Components-and-Directives-for-Quick-Test

framework: 'all'

IMPORTANT
This will not take advantage of tree shaking, causing your bundle to become bloated with unnescesary/unused code. Not recommended for production. Use this only for quick testing purposes.

@danikane
Copy link
Author

Come on, man, I think I'm a reasonable and logical person. 😄 And I like to test thoroughly.
First of all thank you guys for trying to analyze the issue.

I just tested a fresh clean vue project (I know, it's small, doesn't have a huge amount of dependancies) and observed the memory usage. Same as Quasar CLI v0.15 it uses Webpack 3 (3.6.0 to be specific). Memory usage never went above 250 megs just because ... it cleans up well after itself and actually gets as low as 130, just because ... memory management.
I did the same amount of torture to a much bigger project using the v0.15 Quasar CLI.
Memory usage goes up of course, but then it goes down .. a lot!
With v0.16 it goes up big time then it goes down just a little bit, but overall it progressively increases. 😢
I can comment on memory usage all day long, but until someone else with v0.16 troubles chimes in it makes no sense. 😆

I'm not trying to bash you, Razvan or the repo, just pointing out an issue, trying to contribute some way or the other. I still think some plugin doesn't play well with Webpack 4 and I still think you guys did and are still doing great job, so thanks again!

@nothingismagick
Copy link
Contributor

This is the ENV var you can use as a temporary workaround until we resolve the issue properly:

https://nodejs.org/dist/latest-v8.x/docs/api/cli.html#cli_node_options_options
NODE_OPTIONS=--max_old_space_size=4096

There are however issues with this:
cypress-io/cypress#1676
electron/electron#12695

@nothingismagick
Copy link
Contributor

I just tested that like this:

$ NODE_OPTIONS=--max_old_space_size=4096 DEBUG=v8:* npm run dev:pwa

where dev:pwa is "dev:pwa": "quasar dev -m pwa", in package.json

@nothingismagick
Copy link
Contributor

Over at the discord server several people have also reported this.
My hunch is that something is wrong in the source-map process

@nothingismagick
Copy link
Contributor

nothingismagick commented May 23, 2018

$ npm ls source-map
base-core@0.0.1 /project
├─┬ babel-eslint@8.2.3
│ └─┬ @babel/traverse@7.0.0-beta.44
│   └─┬ @babel/generator@7.0.0-beta.44
│     └── source-map@0.5.7  deduped
├─┬ babel-plugin-istanbul@4.1.6
│ ├─┬ istanbul-lib-instrument@1.10.1
│ │ └─┬ babel-generator@6.26.1
│ │   └── source-map@0.5.7  deduped
│ └─┬ test-exclude@4.2.1
│   └─┬ micromatch@3.1.10
│     └─┬ snapdragon@0.8.2
│       └── source-map@0.5.7  deduped
├─┬ jest@22.4.4
│ └─┬ jest-cli@22.4.4
│   ├─┬ istanbul-api@1.3.1
│   │ ├─┬ istanbul-lib-source-maps@1.2.4
│   │ │ └── source-map@0.5.7  deduped
│   │ └─┬ istanbul-reports@1.3.0
│   │   └─┬ handlebars@4.0.11
│   │     ├── source-map@0.4.4 
│   │     └─┬ uglify-js@2.8.29
│   │       └── source-map@0.5.7 
│   ├─┬ istanbul-lib-source-maps@1.2.3
│   │ └── source-map@0.5.7  deduped
│   ├─┬ jest-runtime@22.4.4
│   │ └─┬ babel-core@6.26.3
│   │   ├─┬ babel-register@6.26.0
│   │   │ ├─┬ babel-core@6.26.3
│   │   │ │ └── source-map@0.5.7  deduped
│   │   │ └─┬ source-map-support@0.4.18
│   │   │   └── source-map@0.5.7  deduped
│   │   └── source-map@0.5.7  deduped
│   └─┬ jest-util@22.4.3
│     └── source-map@0.6.1 
├─┬ jsdom@11.10.0
│ └─┬ escodegen@1.9.1
│   └── source-map@0.6.1 
├─┬ mocha-loader@1.1.3
│ └─┬ css-loader@0.28.11
│   ├─┬ cssnano@3.10.0
│   │ └─┬ postcss-svgo@2.1.6
│   │   └─┬ svgo@0.7.2
│   │     └─┬ csso@2.3.2
│   │       └── source-map@0.5.7  deduped
│   ├─┬ icss-utils@2.1.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   ├─┬ postcss@5.2.18
│   │ └── source-map@0.5.7  deduped
│   ├─┬ postcss-modules-extract-imports@1.2.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   ├─┬ postcss-modules-local-by-default@1.2.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   ├─┬ postcss-modules-scope@1.1.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   └─┬ postcss-modules-values@1.3.0
│     └─┬ postcss@6.0.22
│       └── source-map@0.6.1 
├─┬ mocha-webpack@1.1.0
│ └─┬ source-map-support@0.5.6
│   └── source-map@0.6.1 
├─┬ nyc@11.8.0
│ ├─┬ istanbul-lib-instrument@1.10.1
│ │ └─┬ babel-generator@6.26.1
│ │   └── source-map@0.5.7  deduped
│ ├─┬ istanbul-lib-source-maps@1.2.3
│ │ └── source-map@0.5.7 
│ ├─┬ istanbul-reports@1.4.0
│ │ └─┬ handlebars@4.0.11
│ │   ├── source-map@0.4.4 
│ │   └─┬ uglify-js@2.8.29
│ │     └── source-map@0.5.7  deduped
│ ├─┬ merge-source-map@1.1.0
│ │ └── source-map@0.6.1 
│ └─┬ micromatch@3.1.10
│   └─┬ snapdragon@0.8.2
│     └── source-map@0.5.7  deduped
└─┬ quasar-cli@0.16.0
  ├─┬ @babel/core@7.0.0-beta.46
  │ ├─┬ @babel/generator@7.0.0-beta.46
  │ │ └── source-map@0.5.7  deduped
  │ └── source-map@0.5.7 
  ├─┬ compression-webpack-plugin@1.1.11
  │ └─┬ webpack-sources@1.1.0
  │   └── source-map@0.6.1 
  ├─┬ html-webpack-plugin@3.2.0
  │ └─┬ html-minifier@3.5.16
  │   ├─┬ clean-css@4.1.11
  │   │ └── source-map@0.5.7  deduped
  │   └─┬ uglify-js@3.3.26
  │     └── source-map@0.6.1 
  ├─┬ postcss-loader@2.1.5
  │ └─┬ postcss@6.0.22
  │   └── source-map@0.6.1 
  ├─┬ postcss-rtl@1.2.3
  │ └─┬ rtlcss@2.2.1
  │   └─┬ postcss@6.0.22
  │     └── source-map@0.6.1 
  ├─┬ stylus@0.54.5
  │ └── source-map@0.1.43 
  ├─┬ uglify-es@3.3.9
  │ └── source-map@0.6.1 
  ├─┬ uglifyjs-webpack-plugin@1.2.5
  │ └── source-map@0.6.1 
  └─┬ vue-loader@15.1.0
    └─┬ @vue/component-compiler-utils@1.3.0
      ├─┬ merge-source-map@1.1.0
      │ └── source-map@0.6.1 
      ├─┬ postcss@6.0.22
      │ └── source-map@0.6.1 
      └── source-map@0.5.7  deduped

@danikane
Copy link
Author

Thanks, I set the env.variable.
Yes, source maps were mentioned in the webpack threads. 👍

@nothingismagick
Copy link
Contributor

nothingismagick commented May 23, 2018

I wonder if this is our problem:

  ├─┬ stylus@0.54.5
  │ └── source-map@0.1.43 

@nothingismagick
Copy link
Contributor

nothingismagick commented May 23, 2018

Stylus is a bit stale...

screen shot 2018-05-23 at 10 48 05

@danikane
Copy link
Author

danikane commented May 23, 2018

Yep, right:

{
"name": "stylus",
"description": "Robust, expressive, and feature-rich CSS superset",
"version": "0.54.5",
...
},
"dependencies": {
"css-parse": "1.7.x",
"mkdirp": "0.5.x",
"debug": "*",
"sax": "0.5.x",
"glob": "7.0.x",
"source-map": "0.1.x"
},
...
}

@nothingismagick
Copy link
Contributor

https://github.com/stylus/stylus/blob/dev/package.json

  "dependencies": {
    "css-parse": "~2.0.0",
    "debug": "~3.1.0",
    "glob": "~7.1.2",
    "mkdirp": "~0.5.x",
    "sax": "~1.2.4",
    "source-map": "~0.7.2"
  },

@danikane
Copy link
Author

danikane commented May 23, 2018

Yes, a lot of commits since the last release, so we wait for a new release and update Quasar CLI's dependancies?

@nothingismagick
Copy link
Contributor

Worst practice would be to remove the bad version of source-map in that library's node modules, and copy + paste a version from e.g. uglify-es/node_modules which I just did. And quasar devstill runs for me...

@nothingismagick
Copy link
Contributor

(and first compile is also a bit faster, I must say...)

@danikane
Copy link
Author

Yeah, but GLOBAL mode is not yet implemented. 😃

@nothingismagick
Copy link
Contributor

I'll leave GLOBAL for future work. And by the way, I actually used this on another project today and it worked perfectly.

@rstoenescu
Copy link
Member

@danikane One more test please. Without any other temporary solutions in this thread, can you set quasar init then set quasar.conf > build > sourceMap: false and see if it still happens? Thank you for your efforts!

@danikane
Copy link
Author

Hey, glad to help!
Umm, it still does although not so dramatically. Does occasionally free up a little bit of RAM inbetween changes... So in a way - it's effective.
I quasar init, did what you suggested, didn't touch anything except the default layout, made a lot of consecutive changes, still eats it up. 😢

Another project eventually drops to the initial memory consumption.

@danikane
Copy link
Author

danikane commented May 24, 2018

I was comparing the Sources tab on Chrome on two different projects and it seemed strange that the Vue file (from sourcemap) I'm editing doesn't get updated at all when updating the template (on the latest quasar compared to fresh vue project for example), only webpack hot update scripts get pushed.
When updating the script part though it refreshes and shows the edit correctly.

These are some of the dependancies of a pure vue project:

"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",

And these are quasar's:

"vue-loader": "15.1.0",
"vue-style-loader": "4.1.0",
"vue-template-compiler": "2.5.16",

But that's really black magic for me. 😄

Or maybe Vue team just didn't update their template.
https://github.com/vuejs-templates/webpack

@panstromek
Copy link

Just wanted to mention that dev server on my co-workers Mac sometimes randomly crashes for the same reason (Allocation failed, heap out of memory).

@nothingismagick
Copy link
Contributor

@panstromek - have you tried this:

$ NODE_OPTIONS=--max_old_space_size=4096 DEBUG=v8:* npm run dev:pwa

where dev:pwa is "dev:pwa": "quasar dev -m pwa", in package.json

@nothingismagick
Copy link
Contributor

nothingismagick commented May 28, 2018

So this is still happening, btw. And now the following detail came to light on Discord:

"I get that sometimes.. usually thanks to hot-reload in the middle of broken code being saved. Just restart quasar dev."

I replied: " the interrupted hot-reload would explain this. The cache is not invalidated (GC'd) and won't be until webpack completes its run - so it just explodes and the node parent process can't allocate any more buffers because they're all full and locked."

@rstoenescu
Copy link
Member

So it means it must be fixed within Webpack package and Quasar can't do anything about it. Opening a ticket on webpack or webpack-dev-server repository (with prior check if it's already there something similar) should be the way to go further.

@nothingismagick
Copy link
Contributor

@rstoenescu - I opened an issue here about the source-map problem: stylus/stylus#2386

nothingismagick commented 7 days ago •
webpack/webpack#7314
They suggest looking into adding the clean-webpack-plugin

@danikane
danikane commented 7 days ago •
I'd say this one:
webpack/webpack#6929
Some of the plugins are misbehaving...

@rstoenescu
Copy link
Member

clean-webpack-plugin does not interfere with webpack dev mode, so not a solution. The problem in webpack is somewhere else.

@rstoenescu
Copy link
Member

@danikane can you update your node version to >= 10 and retry this? It seems like there would be a problem with node 8 only. Sorry for repeatedly asking to test.

@leo-buneev
Copy link

leo-buneev commented Jun 3, 2018

Hi! Did some testing of various configs related to this issue on pretty small project:

❌ Using node 10.0 did not fix the issue
❌ Disabling source maps did not fix the issue, although significantly increased time that it takes to fail
❌ Using superdep surgical on stylus did not fix the issue
✔️ Finally, disabling PostCSS (by removing all PostCSS loaders from generated webpack config) fixed the issue.

Honestly, I would appreciate possibility to disable PostCss in quasar.conf.js regardless - ran into some non-trivial problems introduced by PostCss on quasar 0.14 and needed to disable it.

Workaround for people that want to try disabling PostCss now:

// quasar.conf.js
extendWebpack(cfg) {
  for (const rule of cfg.module.rules) {
    if (!rule.oneOf) continue
    for (const ruleOneOf of rule.oneOf) {
      ruleOneOf.use = ruleOneOf.use.filter(u => u.loader !== 'postcss-loader')
    }
  }
}

@monoc44
Copy link

monoc44 commented Jun 4, 2018

Ran into same problems. I confirm: use of node 10 didn’t fix the issue.

Thanks @leo-buneev, will try your workaround.

@monoc44
Copy link

monoc44 commented Jun 4, 2018

Sadly, disabling PostCss didn't fix the problem for me:

FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory

@Eldar-X
Copy link

Eldar-X commented Jun 16, 2018

I have the latest versions of all packages and node.js but occasionally I have the same problems.

@nothingismagick
Copy link
Contributor

@Eldar-X - can you be more specific about the situation surrounding your experience with this issue? Does it happen when a hot-reload is interrupted with new changes?

@rstoenescu
Copy link
Member

rstoenescu commented Jun 16, 2018

Made a small change to Quasar CLI (will be available in 0.16.5), based on one comment from sokra: webpack/webpack#1914 (comment)

I'm still not confident this fixes it.
Seems like most Webpack projects are affected by this... vue-cli included.

@nothingismagick
Copy link
Contributor

The link to the similar issue at vue is here: vuejs/vue-cli#1453

@boid-com
Copy link

I'm suffering from this issue as well. I have noticed that the dev server will crash more often when editing css. Also it tends to recompile more slowly over time before finally crash. previous versions of quasar didn't have this issue. seems like a huge oversight from Webpack team?

@juanigonvocal
Copy link

Hi, any updates on this? Tried all the workarounds suggested, but still getting this error when building on my cloud server:

 [==================  ] 90% (chunk assets processing)node[576]: pthread_create: Resource temporarily unavailable

@nothingismagick
Copy link
Contributor

@juanigonvocal - that is something else. This issue is about the dev server running out of memory. Your problem appears to be that the user cannot assign a thread to the node process.

@juanigonvocal
Copy link

@nothingismagick yes, sorry I created #162 Thanks!

@danikane
Copy link
Author

danikane commented Aug 24, 2018

Hey guys, let me report back after being away for quite some time. 😃
Using versions below it's still looking fresh after few hours of editing. Memory usage is normal, no errors whatsoever.

N App URL........... http://localhost:8080/
Dev mode.......... spa
Quasar theme...... mat
Quasar CLI........ v0.17.11
Quasar Framework.. v0.17.9

Soooo, I guess this could be considered case closed or at least for the v0.17.x CLI.
Thanks everyone!

@nothingismagick
Copy link
Contributor

Then by all means - close it!

@skirankumar7
Copy link

$ npm ls source-map
base-core@0.0.1 /project
├─┬ babel-eslint@8.2.3
│ └─┬ @babel/traverse@7.0.0-beta.44
│   └─┬ @babel/generator@7.0.0-beta.44
│     └── source-map@0.5.7  deduped
├─┬ babel-plugin-istanbul@4.1.6
│ ├─┬ istanbul-lib-instrument@1.10.1
│ │ └─┬ babel-generator@6.26.1
│ │   └── source-map@0.5.7  deduped
│ └─┬ test-exclude@4.2.1
│   └─┬ micromatch@3.1.10
│     └─┬ snapdragon@0.8.2
│       └── source-map@0.5.7  deduped
├─┬ jest@22.4.4
│ └─┬ jest-cli@22.4.4
│   ├─┬ istanbul-api@1.3.1
│   │ ├─┬ istanbul-lib-source-maps@1.2.4
│   │ │ └── source-map@0.5.7  deduped
│   │ └─┬ istanbul-reports@1.3.0
│   │   └─┬ handlebars@4.0.11
│   │     ├── source-map@0.4.4 
│   │     └─┬ uglify-js@2.8.29
│   │       └── source-map@0.5.7 
│   ├─┬ istanbul-lib-source-maps@1.2.3
│   │ └── source-map@0.5.7  deduped
│   ├─┬ jest-runtime@22.4.4
│   │ └─┬ babel-core@6.26.3
│   │   ├─┬ babel-register@6.26.0
│   │   │ ├─┬ babel-core@6.26.3
│   │   │ │ └── source-map@0.5.7  deduped
│   │   │ └─┬ source-map-support@0.4.18
│   │   │   └── source-map@0.5.7  deduped
│   │   └── source-map@0.5.7  deduped
│   └─┬ jest-util@22.4.3
│     └── source-map@0.6.1 
├─┬ jsdom@11.10.0
│ └─┬ escodegen@1.9.1
│   └── source-map@0.6.1 
├─┬ mocha-loader@1.1.3
│ └─┬ css-loader@0.28.11
│   ├─┬ cssnano@3.10.0
│   │ └─┬ postcss-svgo@2.1.6
│   │   └─┬ svgo@0.7.2
│   │     └─┬ csso@2.3.2
│   │       └── source-map@0.5.7  deduped
│   ├─┬ icss-utils@2.1.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   ├─┬ postcss@5.2.18
│   │ └── source-map@0.5.7  deduped
│   ├─┬ postcss-modules-extract-imports@1.2.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   ├─┬ postcss-modules-local-by-default@1.2.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   ├─┬ postcss-modules-scope@1.1.0
│   │ └─┬ postcss@6.0.22
│   │   └── source-map@0.6.1 
│   └─┬ postcss-modules-values@1.3.0
│     └─┬ postcss@6.0.22
│       └── source-map@0.6.1 
├─┬ mocha-webpack@1.1.0
│ └─┬ source-map-support@0.5.6
│   └── source-map@0.6.1 
├─┬ nyc@11.8.0
│ ├─┬ istanbul-lib-instrument@1.10.1
│ │ └─┬ babel-generator@6.26.1
│ │   └── source-map@0.5.7  deduped
│ ├─┬ istanbul-lib-source-maps@1.2.3
│ │ └── source-map@0.5.7 
│ ├─┬ istanbul-reports@1.4.0
│ │ └─┬ handlebars@4.0.11
│ │   ├── source-map@0.4.4 
│ │   └─┬ uglify-js@2.8.29
│ │     └── source-map@0.5.7  deduped
│ ├─┬ merge-source-map@1.1.0
│ │ └── source-map@0.6.1 
│ └─┬ micromatch@3.1.10
│   └─┬ snapdragon@0.8.2
│     └── source-map@0.5.7  deduped
└─┬ quasar-cli@0.16.0
  ├─┬ @babel/core@7.0.0-beta.46
  │ ├─┬ @babel/generator@7.0.0-beta.46
  │ │ └── source-map@0.5.7  deduped
  │ └── source-map@0.5.7 
  ├─┬ compression-webpack-plugin@1.1.11
  │ └─┬ webpack-sources@1.1.0
  │   └── source-map@0.6.1 
  ├─┬ html-webpack-plugin@3.2.0
  │ └─┬ html-minifier@3.5.16
  │   ├─┬ clean-css@4.1.11
  │   │ └── source-map@0.5.7  deduped
  │   └─┬ uglify-js@3.3.26
  │     └── source-map@0.6.1 
  ├─┬ postcss-loader@2.1.5
  │ └─┬ postcss@6.0.22
  │   └── source-map@0.6.1 
  ├─┬ postcss-rtl@1.2.3
  │ └─┬ rtlcss@2.2.1
  │   └─┬ postcss@6.0.22
  │     └── source-map@0.6.1 
  ├─┬ stylus@0.54.5
  │ └── source-map@0.1.43 
  ├─┬ uglify-es@3.3.9
  │ └── source-map@0.6.1 
  ├─┬ uglifyjs-webpack-plugin@1.2.5
  │ └── source-map@0.6.1 
  └─┬ vue-loader@15.1.0
    └─┬ @vue/component-compiler-utils@1.3.0
      ├─┬ merge-source-map@1.1.0
      │ └── source-map@0.6.1 
      ├─┬ postcss@6.0.22
      │ └── source-map@0.6.1 
      └── source-map@0.5.7  deduped

what does this means could you explain once......

@panstromek
Copy link

panstromek commented Oct 4, 2019

@skirankumar7 It's a tree of all installed packages (organized by dependencies) that contain source-map as dependency

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

10 participants