Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
##########################################################
#### WhiteSource Integration configuration file ####
##########################################################

# Configuration #
#---------------#
ws.repo.scan=true
vulnerable.check.run.conclusion.level=failure
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"gulp-bump": "^0.3.1",
"gulp-connect": "^2.2.0",
"gulp-gh-pages": "^0.5.2",
"gulp-git": "^1.4.0",
"gulp-git": "^2.4.1",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.2.1",
"gulp-rename": "^1.2.2",
Expand Down
2 changes: 1 addition & 1 deletion tasks/dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = function (gulp, config) {
.pipe(gulp.dest('dist'))
.pipe(rename(config.component.pkgName + '.min.css'))
.pipe(minifyCSS())
.pipe(gulp.dest('dist'))
.pipe(gulp.dest('dist'));
});
buildTasks.push('build:dist:css');
}
Expand Down
2 changes: 1 addition & 1 deletion tasks/examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ module.exports = function (gulp, config) {

var watchLESS = [];
if (config.example.less && config.example.less.length > 0) {
config.example.less.forEach(function(fileName) {
config.example.less.forEach(function (fileName) {
watchLESS.push(config.example.src + '/' + fileName);
});
}
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function (gulp, config) {

gulp.task('build:lib', function () {
return gulp.src([ config.component.src + '/**/*.js', '!**/__tests__/**/*' ])
.pipe(babel({ plugins: [require('babel-plugin-object-assign')] }))
.pipe(babel({plugins: [require('babel-plugin-object-assign')]}))
.pipe(gulp.dest(config.component.lib));
});

Expand Down