grunt-packer
Advanced tools
Comparing version 0.3.5 to 0.3.6
@@ -0,0 +0,0 @@ module.exports = function(grunt) { |
@@ -0,0 +0,0 @@ var cssTask = require('./lib/pack-css-task'); |
@@ -103,2 +103,3 @@ var crypto = require('crypto'), | ||
return function() { | ||
grunt.log.ok(grunt.template.today('hh:MM:ss') + ': Запускается задача паковки ' + ext + '.'); | ||
@@ -168,2 +169,4 @@ this.data.htmls = this.data.htmls || '**/*.html'; | ||
grunt.log.ok(grunt.template.today('hh:MM:ss') + ': Задача паковки ' + ext + ' выполнена.'); | ||
return true; | ||
@@ -170,0 +173,0 @@ |
@@ -0,0 +0,0 @@ var |
@@ -0,0 +0,0 @@ var helpers = require('./helpers.js'); |
{ | ||
"name": "grunt-packer", | ||
"description": "Grunt plugin to automagically concat JS and CSS files found in HTML", | ||
"version": "0.3.5", | ||
"version": "0.3.6", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Oleg Elifantiev", |
@@ -0,0 +0,0 @@ grunt-packer |
(function(){ | ||
// this is file a | ||
})(); |
(function(){ | ||
// this is file b | ||
})(); |
(function(){ | ||
// this is file c | ||
})(); |
(function(){ | ||
// this is file d | ||
})(); |
(function(){ | ||
// this is file e | ||
})(); |
var packCss = require('../lib/pack-css-task'); | ||
var packJs = require('../lib/pack-js-task'); | ||
function timeLog(grunt, taskName, task) { | ||
grunt.log.ok(grunt.template.today('hh:MM:ss') + ': Запускается задача ' + taskName + '.'); | ||
task(grunt); | ||
grunt.log.ok(grunt.template.today('hh:MM:ss') + ': Задача ' + taskName + ' выполнена.'); | ||
} | ||
module.exports = function(grunt) { | ||
grunt.registerMultiTask('packcss', 'Pack CSS files referenced from HTML documents', timeLog(grunt, 'packcss', packCss.gruntPackCSS)); | ||
grunt.registerMultiTask('packjs', 'Pack JS files referenced from HTML documents', timeLog(grunt, 'packjs', packJs)); | ||
grunt.registerMultiTask('packcss', 'Pack CSS files referenced from HTML documents', packCss.gruntPackCSS(grunt)); | ||
grunt.registerMultiTask('packjs', 'Pack JS files referenced from HTML documents', packJs(grunt)); | ||
}; |
@@ -0,0 +0,0 @@ var assert = require('assert'), |
@@ -0,0 +0,0 @@ var assert = require('assert'), |
@@ -0,0 +0,0 @@ var assert = require('assert'), |
@@ -0,0 +0,0 @@ var task = require('../lib/pack-css-task'); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
1
37810
821