Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit e24bec7

Browse files
committed
Renamed deploy to dist (closes snowplow#319)
1 parent b3fc71e commit e24bec7

3 files changed

Lines changed: 7 additions & 8 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ npm-debug.log
1919
node_modules
2020

2121
**/lodash.js
22-
dist
2322
tests/pages/*.js
2423
tags/tag.min.js
2524

Gruntfile.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module.exports = function(grunt) {
9191
browserify: {
9292
main: {
9393
files: {
94-
'deploy/bundle.js': ['src/js/init.js']
94+
'dist/bundle.js': ['src/js/init.js']
9595
}
9696
},
9797
test: {
@@ -109,8 +109,8 @@ module.exports = function(grunt) {
109109
'banner': '<%= banner %>',
110110
'process': true
111111
},
112-
src: ['deploy/bundle.js'],
113-
dest: 'deploy/snowplow.js'
112+
src: ['dist/bundle.js'],
113+
dest: 'dist/snowplow.js'
114114
},
115115
tag: {
116116
options: {
@@ -129,8 +129,8 @@ module.exports = function(grunt) {
129129
},
130130
files: [
131131
{
132-
src: 'deploy/snowplow.js',
133-
dest: 'deploy/sp.js'
132+
src: 'dist/snowplow.js',
133+
dest: 'dist/sp.js'
134134
}
135135
]
136136
},
@@ -197,7 +197,7 @@ module.exports = function(grunt) {
197197
},
198198
upload: [
199199
{
200-
src: 'deploy/sp.js',
200+
src: 'dist/sp.js',
201201
dest: '<%= pkg.version %>/sp.js'
202202
}
203203
]
@@ -210,7 +210,7 @@ module.exports = function(grunt) {
210210
},
211211
upload: [
212212
{
213-
src: 'deploy/sp.js',
213+
src: 'dist/sp.js',
214214
dest: '<%= pkg.pinnedVersion %>/sp.js'
215215
}
216216
]
File renamed without changes.

0 commit comments

Comments
 (0)