You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
I have a question about the copy task in the gulpfile.js (v2.8.0).
In the file we have this:
// Copy task
gulp.task('copy', function() {
// Motion UI
var motionUi = gulp.src('assets/components/motion-ui/**/*.*')
.pipe($.flatten())
.pipe(gulp.dest('assets/javascript/vendor/motion-ui'));
// What Input
var whatInput = gulp.src('assets/components/what-input/**/*.*')
.pipe($.flatten())
.pipe(gulp.dest('assets/javascript/vendor/what-input'));
With this all the Motion UI and What Input files are placed in the javascript/vendor folder (including scss, css, md, json...) but the js files of both components are already included in javascript/foundation.js by Uglify task.
Is there any purpose for this in the copy job?
Thanks
The text was updated successfully, but these errors were encountered:
I second that. I think that task is unnecessary since the theme doesn't enqueue the script from assets/javascript/vendor. I searched the packaged file and couldn't find any instances of assets/javascript/vendor being used in the theme.
Hi guys!
I have a question about the copy task in the gulpfile.js (v2.8.0).
In the file we have this:
With this all the Motion UI and What Input files are placed in the javascript/vendor folder (including scss, css, md, json...) but the js files of both components are already included in javascript/foundation.js by Uglify task.
Is there any purpose for this in the copy job?
Thanks
The text was updated successfully, but these errors were encountered: