is there a browserify way to use this library ?
jlguenego opened this issue · 1 comments
jlguenego commented
is there a browserify way to use this library ?
michaelhunziker commented
I think currently the only way to use it with browserify is by using browserify-shim:
package.json:
"browser": {
"angular-ui-validate": "./node_modules/angular-ui-validate/dist/validate.js"
},
"browserify-shim": {
"angular-ui-validate": {
"exports": "angular.module('ui.validate').name"
}
},
"browserify": {
"transform": [
"browserify-shim"
]
}