git clone -b master --single-branch https://github.com/kevinjamesus86/strap.git <new-name> for crafting
do this
# clone master branch ( really just a Require setup )
git clone -b master --single-branch https://github.com/kevinjamesus86/strap.git <new-name>
# install dependencies
npm i && bower i
# and serve
npm run devlove for bower
Feel free to bower i -S <dependency> and require it into a module. Por ejemplo:
# install and save jquery as a dependency
bower i -S jqueryand then
// app/require/paths.js
define({
// snip ...
jquery: 'components/jquery/dist/jquery'
});
// later, in your awesome module
define(['jquery'], function($) {
// $ stuff
});Add or change files, watch the browser reload, woohoo 👍