Gathering detailed insights and metrics for task-manager-gulp
Gathering detailed insights and metrics for task-manager-gulp
Gathering detailed insights and metrics for task-manager-gulp
Gathering detailed insights and metrics for task-manager-gulp
basic task manager with gulp for build files and directories
npm install task-manager-gulp
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
23 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Jan 31, 2019
Latest Version
2.0.0
Package Id
task-manager-gulp@2.0.0
Unpacked Size
18.08 kB
Size
5.54 kB
File Count
7
NPM Version
5.6.0
Node Version
8.6.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
A module for execute task to development project
1// Use example 2 3const gulp = require('gulp'); 4const taskManager = require('task-manager-gulp'); 5const runSeq = require('run-sequence'); 6 7var buildMode; 8 9// Creation of the 'gulpManager' 10// Configuration construction, importing the main configuration file 11var createGulpManager = function (mode, observable) { 12 gulpManager = new taskManager({ 13 pathModule: "{app}/src/main/{module}", 14 destiny: "{app}/src/main/webapp", 15 mode: mode || "dev", 16 watch: observable || false 17 }); 18 19 var mainConfig = require("./config/config.js"); 20 gulpManager.buildModulesPath(mainConfig); 21 gulpManager.readFilesConfig(); 22 gulpManager.buildConfig(); 23}; 24 25gulp.task("dev", function () { 26 createGulpManager("develop", false); 27 gulpManager.executeTasks("develop"); 28}); 29 30// CONFIGURATION FILES 31 32// Required structure file of projects and project modules './config/aplications.js' 33 34"use strict"; 35var config = { 36 aplications: { 37 'any-web-project' : [ 38 'module1/template' 39 ], 40 'any-web-project2': [ 41 'module1/custom', 42 'module2/angular', 43 'module3/bootstrap', 44 'module4/jquery' 45 ] 46 }, 47 filesConfig: { 48 js: '/js.config.js', 49 css: '/css.config.js', 50 copy: '/cp.config.js' 51 } 52}; 53module.exports = config; 54 55 56// 57// Creating addresses for reading configuration files. 58// 59// for project 'any-web-project' 60// {app}/src/main/{module} --> any-web-project/src/main/module1/template 61// .... 62// for project 'any-web-project2' 63// {app}/src/main/{module} --> any-web-project2/src/main/module1/unikit 64 65//file required in {app}/src/main/{module}/config/js.config.js, to read javascript file settings 66 67var jsConfig = function(){ 68 var files = { 69 folderDest: 'angularjs', 70 nameBuild: 'build', 71 base: [ 72 "/file.js" 73 ], 74 excludeToProd: [] 75 } 76 return files; 77}; 78 79if (typeof exports !== "undefined") { 80 module.exports = jsConfig; 81} 82 83// File required in {app}/src/main/{module}/config/css.config.js, to read css file settings 84// If you have sass files, you can attach them to the same list of base files 85 86var cssConfig = function(){ 87 var files = { 88 folderDest: 'angularjs', 89 nameBuild: 'build', 90 base: [ 91 "/file.css", 92 "/file.scss" 93 ], 94 excludeForProd: [] 95 } 96 return files; 97}; 98 99if (typeof exports !== "undefined") { 100 module.exports = cssConfig; 101} 102 103// File required in {app}/src/main/{module}/config/css.config.js, to read copy file settings 104 105var cpConfig = function(){ 106 var files = { 107 folderDest: 'angularjs', 108 nameBuild: 'build', 109 dir: [ 110 sourcePath + "/dir/" 111 ], 112 files:[ 113 '/templates/test.html', 114 '/3.3.7/fonts/*' 115 ] 116 } 117 return files; 118}; 119 120if (typeof exports !== "undefined") { 121 module.exports = cpConfig; 122} 123 124
(MIT License)
Copyright (c) 2017
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
Found 0/23 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
48 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More