Initialization error
See original GitHub issueThe plugin stopped working after I upgraded to Node 6.0. After updating Brunch to 2.7.4, it started throwing the following error:
$ LOGGY_STACKS=true brunch build --production
01 May 18:08:05 - error: Initialization error - Cannot read property 'brunchPluginName' of null
Type at loadPackages.filter.arg (/Users/diogo/Code/juros/node_modules/brunch/lib/plugins.js:140:33)
at Array.filter (native)
at Object.exports.init (/Users/diogo/Code/juros/node_modules/brunch/lib/plugins.js:139:38)
at BrunchWatcher.application.loadConfig.then.then.then.cfg (/Users/diogo/Code/juros/node_modules/brunch/lib/watch.js:110:19)
The error goes away when I remove sass-brunch
from my package.json.
This is what I have in my brunch-config.coffee:
plugins:
sass:
mode: 'native'
options: includePaths: ['node_modules']
Issue Analytics
- State:
- Created 7 years ago
- Comments:7
Top Results From Across the Web
JUNIT Initialization Error [duplicate] - java - Stack Overflow
Right click your project in Package Explorer > click Properties go to Java Build Path > Libraries tab click on 'Add Library' button...
Read more >Initialization Errors - IBM
An error occurred while opening the file, or VSAM encountered a physical or logical error. The VSAM file cannot be defined and loaded...
Read more >InitializationError (JUnit API)
public class InitializationError; extends Exception. Represents one or more problems encountered while initializing a Runner.
Read more >Initialization error while running the junit test class
alt textHi All, I have created the test class for populator, while running the j unit it is giving me the initialization error....
Read more >Initialization Error Dead By Daylight FIX ? DBD ... - YouTube
... gamers nows the time to solo q knowing there's no baby survivorsWhen it will be fix? Error Dead By Daylight. dbd initialization...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I had the same problem with brunch (2.7.7) which was installed globally. As in op, the error apperared for the first time after installing
brunch-sass
and disappeared whenbrunch-sass
was removed from package.json.This got fixed with the following procedures:
nvm install 6.1.0
npm install
I got this error with node 7.2. However I’ve found that if I remove
/node_modules
and then runnpm install
again it works fine. No need to downgrade node version.