Assuming a directory structure like
- src/
- scripts/
- _common/
- common.js
- page1.js
- page2.js
- _common/
- scripts/
I want to create distinct files that concatenate common + page1 and a separate file for common + page2.
Output to look something like
- dist/
- page1/
- script.js
- page2/
- script.js
- page1/
where script.js is each page's specific js concatenated to common.
I have something working on the sass side that creates the folders so really all I need to do is figure out how to get page specific files and drop them in a folder named for the original source file
return gulp.src(paths.styles.src)
.pipe(sass().on('error', sass.logError))
.pipe(postcss(processors))
.pipe(rename(function(file) {
file.dirname = file.basename;
file.basename = 'style';
file.extname = '.css';
}))
.pipe(gulp.dest(paths.styles.dest));
Try this for the js: