Skip to content

Commit 9b93a23

Browse files
committed
Output distributable ZIPs to "distributable/" directory
1 parent c0bc22a commit 9b93a23

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ _site/*
99
sceditor.sublime-project
1010
sceditor.sublime-workspace
1111
node_modules/*
12+
distributable/*

Gruntfile.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ module.exports = function(grunt) {
9090
compress: {
9191
dist: {
9292
options: {
93-
archive: 'sceditor-<%= pkg.version %>.zip'
93+
archive: 'distributable/sceditor-<%= pkg.version %>.zip'
9494
},
9595
files: [
9696
{expand: true, cwd: 'dist/', src: ['**'], dest: '/'}
@@ -133,6 +133,7 @@ module.exports = function(grunt) {
133133
'concat:dist',
134134
'copy:dist',
135135
'less:dist',
136-
'compress:dist'
136+
'compress:dist',
137+
'clean:dist'
137138
]);
138139
};

0 commit comments

Comments
 (0)