Skip to content

Commit

Permalink
add some logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronosSF committed Apr 17, 2024
1 parent c80e58a commit cb8e1d2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions browser/tasks/gulp-samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,12 @@ function getSamples(cb) {
cleanSamples();

samplesList = [];

console.log(sampleSource);
gulp.src(sampleSource)
// .pipe(gSort( { asc: false } ))
.pipe(es.map(function(samplePackage, sampleCallback) {

console.log(samplePackage);
console.log(sampleCallback);
let sampleFolderName = Transformer.getRelative(samplePackage.dirname);

if (skipSamples.indexOf(sampleFolderName) >= 0) {
Expand Down Expand Up @@ -180,7 +181,10 @@ function getSamples(cb) {
// sampleCallback(null, sample);
}))
.on("end", function() {
console.log("end");

Transformer.sort(samplesList);
console.log(samplesList);
Transformer.process(samplesList);
// Transformer.verify(samplesList);
// Transformer.print(samplesList);
Expand Down

0 comments on commit cb8e1d2

Please sign in to comment.