GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
452 B

2 months ago
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.listFiles = void 0;
  4. const glob_1 = require("glob");
  5. function listFiles(cwd, ignore = []) {
  6. return (0, glob_1.sync)("**/*", {
  7. cwd,
  8. dot: true,
  9. follow: true,
  10. ignore: ["**/firebase-debug.log", "**/firebase-debug.*.log", ".firebase/*"].concat(ignore),
  11. nodir: true,
  12. nosort: true,
  13. });
  14. }
  15. exports.listFiles = listFiles;