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
Readme example is producing an error:
import { svgicons2svgfont } from 'gulp-svgicons2svgfont'; gulp.task('Iconfont', () => { svgicons2svgfont(['assets/icons/*.svg'], { fontName: 'myfont', }) .on('glyphs', function (glyphs) { console.log(glyphs); // Here generate CSS/SCSS for your glyphs ... }) .pipe(gulp.dest('www/font/')); });
The following tasks did not complete: build, fonticons Did you forget to signal async completion?
So I tried adding async:
async
gulp.task('Iconfont', async () => {
Finished 'Iconfont' after 12 ms
All good.
The text was updated successfully, but these errors were encountered:
Thank for the report, feel free to PR a change.
Sorry, something went wrong.
Sure, I can do that. 🙂
No branches or pull requests
Readme example is producing an error:
So I tried adding
async
:All good.
The text was updated successfully, but these errors were encountered: