yeoman / generator-webapp

A gulp.js generator for modern webapps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

run with ES%

xavierartot opened this issue · comments

Hi,
How can I setup to run ES5 and jQuery?
Thanks

I'm not sure what you mean by "ES5", but for jQuery you can install it:

yarn add jquery

then in your index.html add jQuery between the build:js scripts/vendor.js comment directives:

<!-- build:js scripts/vendor.js -->
<script type="text/javascript" src="/node_modules/jquery/dist/jquery.js"></script>
<!-- endbuild -->