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
Hi, I am trying to run an independent gulp task, which will convert all my sketch files in a folder to pngs in another folder.
I am running the following task as per the given syntax:
gulp.task('sketch', function(){ return gulp.src('sketch-files/*.sketch') .pipe(sketch({ export: 'artboards', formats: 'png' })).on('error', gutil.log) .pipe(gulp.dest('preview')); });
The task starts but never ends and i am thrown out of the gulp task. No pngs generated either... I am using gulp-sketch 1.0.5 and sketch version 45.2
Folder structure, ---gulpfile.js ---sketch-files ---preview all at the same level
Terminal Output:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I am trying to run an independent gulp task, which will convert all my sketch files in a folder to pngs in another folder.
I am running the following task as per the given syntax:
The task starts but never ends and i am thrown out of the gulp task. No pngs generated either...
I am using gulp-sketch 1.0.5 and sketch version 45.2
Folder structure,
---gulpfile.js
---sketch-files
---preview
all at the same level
Terminal Output:
The text was updated successfully, but these errors were encountered: