Skip to content

Commit b337f12

Browse files
committed
Merge pull request #125 from mackenza/add-dist-to-release
Added dist folder and output of build to repo
2 parents 1d308b5 + bbe5518 commit b337f12

5 files changed

+419
-5
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
node_modules
2-
.DS_Store
3-
dist
2+
.DS_Store

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function gruntConfig(grunt) {
1616
copy: {
1717
build: {
1818
src: '<%= pkg.name %>.js',
19-
dest: 'dist/<%= pkg.name %>.js',
19+
dest: 'dist/verbalexpressions.js',
2020
},
2121
},
2222

@@ -37,7 +37,7 @@ module.exports = function gruntConfig(grunt) {
3737
},
3838
dist: {
3939
files: {
40-
'dist/<%= pkg.name %>.min.js': ['<%= pkg.name %>.js'],
40+
'dist/verbalexpressions.min.js': ['<%= pkg.name %>.js'],
4141
},
4242
},
4343
},
@@ -48,7 +48,7 @@ module.exports = function gruntConfig(grunt) {
4848
},
4949
build: {
5050
files: {
51-
src: ['dist/*.min.map'],
51+
src: ['dist/*.min.js.map'],
5252
},
5353
},
5454
},

0 commit comments

Comments
 (0)