Skip to content

Commit

Permalink
Moved module to single file (vex) and built as standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatliner committed Jul 8, 2016
1 parent 06b1005 commit 88485db
Show file tree
Hide file tree
Showing 12 changed files with 255 additions and 1,441 deletions.
33 changes: 6 additions & 27 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@ module.exports = function (grunt) {
browserify: {
vex: {
src: 'src/vex.js',
dest: 'dist/vex.js'
},

vexDialog: {
src: 'src/vex.dialog.js',
dest: 'dist/vex.dialog.js'
},

vexCombined: {
src: 'src/vex.combined.js',
dest: 'dist/vex.combined.js'
dest: 'dist/vex.js',
options: {
browserifyOptions: {
'standalone': 'vex'
}
}
}
},

Expand All @@ -26,22 +21,6 @@ module.exports = function (grunt) {
options: {
banner: '/*! vex.js <%= pkg.version %> */\n'
}
},

vexDialog: {
src: 'dist/vex.dialog.js',
dest: 'dist/vex.dialog.min.js',
options: {
banner: '/*! vex.dialog.js <%= pkg.version %> */\n'
}
},

vexCombined: {
src: 'dist/vex.combined.js',
dest: 'dist/vex.combined.min.js',
options: {
banner: '/*! vex.js, vex.dialog.js <%= pkg.version %> */\n'
}
}
},

Expand Down
Loading

0 comments on commit 88485db

Please sign in to comment.