Wtower / generator-makrina

Yeoman generator for MEAN projects
MIT License
5 stars 0 forks source link

gulp watch not watching #32

Closed pihomeserver closed 7 years ago

pihomeserver commented 7 years ago

Hello First i apologize for questions as i am not an expert I installed yeoman and your generator then removed the use of mongo as i plan to use sequelize instead. My session is then stored via a cookie

var session = require('express-session');

var sessionConfig = function() {
  return session({
    secret: 'dc55482f-2896-4ddc-8007-4200f3bd4258',
    resave: false,
    saveUninitialized: false,
    cookie: { secure: true }
  });
};

module.exports = sessionConfig;

Now comes my problems about how to start the server. I made the gulp watch then started the npm start in another term But when i update any file, it seems that the watch is not performed and have to stop gulp and restart it again Am i doing something wrong ? (using MacOs 10.12.6, node v6.11.1 and npm v5.3.0)

PS : i also get a 404 for /build/admin/css/bootstrap.css.map but i can open a new ticket if you want

pihomeserver commented 7 years ago

Solved by adding wanted folders in the watch list