Skip to content

Commit

Permalink
get better logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronosSF committed Apr 17, 2024
1 parent 34d6fcf commit 7807e74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# echo "//packages.infragistics.com/npm/js-licensed/:_auth=${{ secrets.PROGET_TOKEN }}" >> ~/.npmrc
# echo "//packages.infragistics.com/npm/js-licensed/:always-auth=true" >> ~/.npmrc

- name: npm install --legacy-peer-deps
- name: npm install
run: cd browser && npm install
- name: Build
run: cd browser && npm run build
7 changes: 3 additions & 4 deletions browser/tasks/gulp-samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +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);
console.log('dir'); console.log(samplePackage.dirname);
console.log('transformer'); console.log(sampleFolderName);

if (skipSamples.indexOf(sampleFolderName) >= 0) {
// skip until material UI components are replaced in samples
Expand Down Expand Up @@ -184,7 +183,7 @@ function getSamples(cb) {
console.log("end");

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

0 comments on commit 7807e74

Please sign in to comment.