Aurelia bundle with gulp throws "TypeError: Path must be a string. Received undefined"
By : Felipe Deval
Date : March 29 2020, 07:55 AM
it helps some times As I tracked it down, the issues seems to be an ugly combination of node-gyp, Windows and node 6 So install all dependencies needed for node-gyp, following your OS steps as seen at official repo. Unfortunately for now if you are running Windows is likely that you need to install Visual Studio. Then run npm install on the repository and see if there is any error, should be no one now. Then try to gulp bundle it should work now. With downgraded node to 5.11 I was able to run again, I did not test with node 6 but feel free to try.
|
ERROR in Path must be string. Received undefined webpack: failed to compile
By : K.Odame
Date : March 29 2020, 07:55 AM
This might help you The issue is related with Node 6 and above. Changing it for Node 5.x instead will probably fix the issue.
|
Grunt "watch" Warning: Path must be a string. Received undefined
By : rohan pugaonkar
Date : March 29 2020, 07:55 AM
fixed the issue. Will look into that further I found the issue. You need to upgrade grunt-contrib-jshint. I had version "grunt-contrib-jshint": "~0.9"
|
cssmin is giving me "Path must be a string. Received undefined"
By : statblaz
Date : March 29 2020, 07:55 AM
hop of those help? The answer referred to in the above replies worked for me. So in node_modules/grunt-contrib-cssmin/tasks/cssmin.js, on line 41, add an or empty string to the parameter:
|
Webpack ERROR in Path must be a string. Received undefined
By : bppapps
Date : March 29 2020, 07:55 AM
this will help When I am learning Writing your AngularJS with ReduxI got the the error "ERROR in The "path" argument must be of type string. Received type undefined webpack: Failed to compile. "
|