-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JavaScript heap out of memory #55
Comments
Please, can you share in a gist a minimum way to reproducible the issue you see? |
related angular/angular-cli#5618 |
It works including things explicitly such as We need to update README.md to reflect this. Do you want to help? |
Using the import syntax stops the heap overflow, but it still doesn't compile for me.
I'm trying to use let Globalize = require('globalize');
// minimum required cldr-data to use Globalize.numberFormatter({ compact: 'short', maximumFractionDigits: 0 })
// generated by http://johnnyreilly.github.io/globalize-so-what-cha-want/#/?currency=false&date=false&message=false&number=true&plural=false&relativeTime=false&unit=false
import enNumbers from 'cldr-data/main/en/numbers.json';
import likelySubtags from 'cldr-data/supplemental/likelySubtags.json';
import numbers from 'cldr-data/supplemental/numberingSystems.json';
Globalize.load(enNumbers);
Globalize.load(likelySubtags);
Globalize.load(numbers); |
This seems unmaintained. Trying to install causes conflicts for me because it's webpack dependency is too old |
Similar error caused by the |
I have a file with the line
const cldr = require('cldr-data')
. When importing the file, Node eats more and more RAM until…What's wrong here?
The text was updated successfully, but these errors were encountered: