build-workflow
Advanced tools
Comparing version 0.1.5 to 0.1.6
@@ -16,5 +16,7 @@ module.exports = function ( grunt, pkg, opts ) { | ||
preBundleCB: function ( b ) { | ||
b.transform( require( 'build-workflow/utils/strictify' )); | ||
var transforms = [ | ||
require( 'build-workflow/utils/shimify' ).configure( deps ), | ||
require( 'build-workflow/utils/strictify' ), | ||
require( 'build-workflow/utils/consoleify' ), | ||
@@ -21,0 +23,0 @@ require( 'build-workflow/utils/dotify' ), |
@@ -6,3 +6,7 @@ module.exports = function ( config ) { | ||
var formatPreprocessors = require( 'build-workflow/resources/karma/format-preprocessors' ); | ||
var commonJSProcessContent = require( 'build-workflow/resources/karma/commonjs-process-content' ); | ||
var commonJSProcessContent = require( 'build-workflow/resources/karma/commonjs-process-content-wrapper' )( { | ||
strictify: function ( filePath ) { | ||
return filePath.indexOf( 'node_modules/' ) === -1; // only strictify modules in the current app | ||
} | ||
} ); | ||
@@ -9,0 +13,0 @@ config.set( { |
@@ -13,3 +13,3 @@ module.exports = function ( grunt, pkg ) { | ||
prepushTasks: [ 'jsonlint', 'check-valid:codepainter' ], | ||
prepushTasks: [ 'jsonlint' ], | ||
@@ -16,0 +16,0 @@ 'filesToValidate': { |
@@ -7,3 +7,3 @@ module.exports = function ( grunt, pkg, opts ) { | ||
var aliases = { | ||
'default': [ 'clean', 'check-valid' ] | ||
'default': [ 'clean', 'check-valid', 'check-valid:codepainter' ] | ||
}; | ||
@@ -10,0 +10,0 @@ |
{ | ||
"name": "build-workflow", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Simple gruntfile helper to define build workflows", | ||
@@ -5,0 +5,0 @@ "main": "config-loader.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
300711
145
3429