wix-incubator / react-templates

Light weight templates for react
https://wix.github.io/react-templates
MIT License
2.82k stars 207 forks source link

allow explicit import of `lodash` #183

Open nippur72 opened 8 years ago

nippur72 commented 8 years ago

it should be possible to import lodash explicitly without causing errors, so it's easier to switch library from the command line (with --lodash-import-path) without breaking the code.

E.g.

<rt-import name="*" as="_" from="lodash"/>
<div>version {_.VERSION}</div>