We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have simple task (coffeescript):
gulp.task 'views:cache', -> gulp.src config.resources.view + '/ng/**/*.html' .pipe debug(title: 'before') .pipe evilIcons() .pipe debug(title: 'after') .pipe viewCache({root:'/views/', module: 'app'}) .pipe gulp.dest(config.public.app)
Before i have 3 files, after 6. Then angular template cache have duplicates in template.js file.
$templateCache.put("/views/modals/departments.html" ... $templateCache.put("/views/modals/departments.html" ...
If i remove this.push(file); on gulp-evil-icon/index.js, all work as expected.
The text was updated successfully, but these errors were encountered:
Can you fix that?
Sorry, something went wrong.
No branches or pull requests
I have simple task (coffeescript):
Before i have 3 files, after 6. Then angular template cache have duplicates in template.js file.
If i remove this.push(file); on gulp-evil-icon/index.js, all work as expected.
The text was updated successfully, but these errors were encountered: