Skip to content

Commit

Permalink
Merge pull request #125 from mackenza/add-dist-to-release
Browse files Browse the repository at this point in the history
Added dist folder and output of build to repo
  • Loading branch information
mihai-vlc committed Jan 11, 2016
2 parents 1d308b5 + bbe5518 commit b337f12
Show file tree
Hide file tree
Showing 5 changed files with 419 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules
.DS_Store
dist
.DS_Store
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = function gruntConfig(grunt) {
copy: {
build: {
src: '<%= pkg.name %>.js',
dest: 'dist/<%= pkg.name %>.js',
dest: 'dist/verbalexpressions.js',
},
},

Expand All @@ -37,7 +37,7 @@ module.exports = function gruntConfig(grunt) {
},
dist: {
files: {
'dist/<%= pkg.name %>.min.js': ['<%= pkg.name %>.js'],
'dist/verbalexpressions.min.js': ['<%= pkg.name %>.js'],
},
},
},
Expand All @@ -48,7 +48,7 @@ module.exports = function gruntConfig(grunt) {
},
build: {
files: {
src: ['dist/*.min.map'],
src: ['dist/*.min.js.map'],
},
},
},
Expand Down
Loading

0 comments on commit b337f12

Please sign in to comment.