Revision 0295177bb00dadfc68d0f5df26104a6d06e751f8 authored by Yaelle Chaudy on 13 October 2022, 08:58:07 UTC, committed by GitHub on 13 October 2022, 08:58:07 UTC
* Added nextPageToken prop

* Adding first and pageToken condition to while loop

* clean up

* revert gitignore

* fix go lint

* Added logic to builder too

* Removed pageSize - was for local testing

* gofmt

* extracted doRequest function

* extracted doRequest in query too

* Adressed filter comments

* Adressed query comments

* go fmt

* removed pageSize added for testing

* go fmt again
1 parent b9d4495
Raw File
watch.js
module.exports = {
  src: {
    files: [
      //what are the files that we want to watch
      'assets/css/*.css',
      'templates/**/*.html',
      'templates/**/*.txt',
      'grunt/*.js',
    ],
    tasks: ['default'],
    options: {
      nospawn: true,
      livereload: false,
    },
  },
};
back to top