Skip to content

Commit

Permalink
Merge pull request #58 from LansanaCamara/ignore-idea-files
Browse files Browse the repository at this point in the history
Ignore idea files
  • Loading branch information
josephspurrier authored Feb 16, 2017
2 parents 7f0ca66 + 06e1ef0 commit e65ca2b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ thumbs.db
env.json
*.exe
*.exe~
blueprint
blueprint

# JetBrains IDE metadata
.idea
4 changes: 4 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ gulp.task('sass', function() {
gulp.task('javascript', function() {
var concat = require('gulp-concat');
var minify = require('gulp-minify');
var babel = require('gulp-babel');
return gulp.src(folderAsset + '/dynamic/js/*.js')
.pipe(babel({
presets: ['es2015']
}))
.pipe(concat('all.js'))
.pipe(minify({
ext:{
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"private": true,
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"bootstrap": "^3.3.6",
"child_process": "^1.0.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-ext-replace": "^0.3.0",
"gulp-livereload": "^3.8.1",
Expand Down

0 comments on commit e65ca2b

Please sign in to comment.