Constantine Gosteev
Constantine Gosteev
had the same issue with gulp. fixed by writing function right inside `use` section: ```js .pipe(stylus({ use: [ require('poststylus')([rucksack({ autoprefixer: true, fallbacks: true })]) ] })) ```
the way i managed files to be precached using @Thatkookooguy function: ``` js gulp.task('watch-pages', function(){ return preCache(templatePagesPath, 'pages', function(){ gulp.watch(templatePagesPath, ['pages']); }); }) gulp.task('watch-styles', function(){ return preCache(stylesheetsPath, 'styles', function(){ gulp.watch(stylesheetsPath,...
there is `change` event that fires when you manually change item amount ``` js paypal.minicart.cart.on('change', function(event) { console.log(1); }); ```