I found some modules of component/component (ex: lodash
) may cause a problem with AMD module loader like requirejs
.
You should delete locally the define
property to make a component working nicely with these loaders.
like below..
install: components index.js
component build --standalone app --out . --name app-temp
sed -e "s/;(function(){/;(function(){var define = undefined;/g" app-temp.js > app.js