simplr-gulp
Version:
Fully functional gulpfile.js implementation. Tailored for Single Page Application. Written in TypeScript.
14 lines (13 loc) • 476 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const paths_builder_base_1 = require("../paths-builder-base");
class AllFilesBuilder extends paths_builder_base_1.BuilderBase {
builder(startPath, name) {
if (name !== undefined) {
return this.joinPaths(startPath, '**', '*' + name);
}
else {
return this.joinPaths(startPath, '**', '*');
}
}
}
exports.AllFilesBuilder = AllFilesBuilder;