Skip to content

Commit

Permalink
Renamed deploy to dist (closes #319)
Browse files Browse the repository at this point in the history
  • Loading branch information
fblundun committed Mar 3, 2015
1 parent b3fc71e commit e24bec7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -19,7 +19,6 @@ npm-debug.log
node_modules

**/lodash.js
dist
tests/pages/*.js
tags/tag.min.js

Expand Down
14 changes: 7 additions & 7 deletions Gruntfile.js
Expand Up @@ -91,7 +91,7 @@ module.exports = function(grunt) {
browserify: {
main: {
files: {
'deploy/bundle.js': ['src/js/init.js']
'dist/bundle.js': ['src/js/init.js']
}
},
test: {
Expand All @@ -109,8 +109,8 @@ module.exports = function(grunt) {
'banner': '<%= banner %>',
'process': true
},
src: ['deploy/bundle.js'],
dest: 'deploy/snowplow.js'
src: ['dist/bundle.js'],
dest: 'dist/snowplow.js'
},
tag: {
options: {
Expand All @@ -129,8 +129,8 @@ module.exports = function(grunt) {
},
files: [
{
src: 'deploy/snowplow.js',
dest: 'deploy/sp.js'
src: 'dist/snowplow.js',
dest: 'dist/sp.js'
}
]
},
Expand Down Expand Up @@ -197,7 +197,7 @@ module.exports = function(grunt) {
},
upload: [
{
src: 'deploy/sp.js',
src: 'dist/sp.js',
dest: '<%= pkg.version %>/sp.js'
}
]
Expand All @@ -210,7 +210,7 @@ module.exports = function(grunt) {
},
upload: [
{
src: 'deploy/sp.js',
src: 'dist/sp.js',
dest: '<%= pkg.pinnedVersion %>/sp.js'
}
]
Expand Down
File renamed without changes.

0 comments on commit e24bec7

Please sign in to comment.