Giter VIP home page Giter VIP logo

angular-gulp-browserify-livereload-boilerplate's People

Contributors

caranicas avatar chrisjlee avatar hyra avatar wdbetts avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

angular-gulp-browserify-livereload-boilerplate's Issues

Why do you need $scope for the WelcomeCtrl to load

In your main.js, you load your WelcomeCtrl like this
app.controller('WelcomeCtrl', ['$scope', WelcomeCtrl])
Why do you need the $scope specified explicitly like that? I am using your pattern to load a service and not have much luck. How would I load a service?

Application Didnot work for me

  1. I simply pulled using tortoise and in the trunk I wrote npm install. It installed the modules but when I ran gulp dev, it said gulp is not recognized as internal or external command. I can see gulp is there in node_modules.
  2. While npm install it throws some warnings line use gulp ramrif instead of gulp clean

A few tweaks to 'clean'

Thanks for the work. I have tried several project seeds, and so-far like this.

Here is a tweak to prevent file errors when clean is not finished before the rest of dev. I've only been using gulp for a day, but adapted from similar issues.

// -----------------------------------------------------------
// Dev task
gulp.task('dev', ['clean'], function() {
// - we need clean to finish completely before the rest of dev starts
gulp.start(['views', 'styles', 'lint', 'browserify']);
});

// -----------------------------------------------------------
// Clean task
gulp.task('clean', function() {
// use return so that gulp can know when clean is done.
return gulp.src('./dist/*/', { read: false }) // much faster
.pipe(rimraf({force: true}));
});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.