Browserify + angular-fullpage.js
tonestrike opened this issue · 2 comments
tonestrike commented
I have an application that relies on Browserify. I am trying to add this module to my application but am having trouble. This is what my Package.JSON looks like:
"browser": {
"fullpage": "./node_modules/fullpage.js/dist/fullpage.min.js",
"angular-fullpage.js": "./node_modules/angular-fullpage.js/angular-fullpage.min.js"
},
"browserify-shim": {
"fullpage.js": {
"exports": "fullpage",
"depends": "jquery"
},
"angular-fullpage.js": {
"exports": "angular.module('fullPage.js').name",
"depends": "fullpage.js"
}
}
I require the module in the AngularJS application using
require('angular-fullpage.js')
When I run the application I get:
Failed to instantiate module portal due to:
Error: [$injector:modulerr] Failed to instantiate module {} due to:
Error: [ng:areq] Argument 'module' is not a function, got Object
Any ideas what is wrong with this?
hellsan631 commented
I'm only currently exporting the module as an angular directory.
tonestrike commented
So is the answer that there isn't a way to do this using Browserify?