UNPKG

gulptraum

Version:

Smart task generator for gulp to get a build pipeline and more in seconds.

49 lines (47 loc) 1.31 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DefaultBuildSystemConfig = { suppressErrors: false, backupSetupFiles: true, paths: { root: '.', source: 'src/', tests: 'test/', output: 'dist/', testOutput: 'dist-test/', doc: 'doc/', setup: '.', changelog: './CHANGELOG.md', }, conventionalTasks: { clean: { help: 'Cleans up all files generated by the build system.', tasksBefore: [] }, lint: { help: 'Applies linting to the source files', tasksBefore: [] }, build: { help: 'Builds all source files', tasksBefore: ['clean'] }, test: { help: 'Builds and runs all test files', tasksBefore: ['build'] }, doc: { help: 'Generates documentation', tasksBefore: [] }, 'setup-dev': { help: 'Copies typical .files for your plugins.', tasksBefore: [] }, watch: { help: 'Watches source files for changes and executes a certain task.', tasksBefore: ['build'] }, }, }; //# sourceMappingURL=build_system_default_config.js.map