Skip to content

Commit

Permalink
Update release process.
Browse files Browse the repository at this point in the history
  • Loading branch information
coreybutler committed Jul 30, 2016
1 parent dc4b3fc commit 48e0c55
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,19 +257,6 @@ gulp.task('release', function (next) {
process.exit(0)
}

// Move the shared directories to the root of the distribution
Object.keys(shared).forEach(function (dir) {
const shareddir = path.join(DIR.dist, dir)
try {
fs.accessSync(shareddir, fs.F_OK)
walk(shareddir).forEach(function (filepath) {
let newpath = path.join(DIR.dist, filepath.replace(DIR.dist + path.sep, '').replace(path.sep, '.'))
fs.renameSync(filepath, newpath)
})
del.sync(path.join(DIR.dist, dir))
} catch (e) {}
})

const assets = walk(DIR.dist).sort()

GithubPublisher({
Expand Down

0 comments on commit 48e0c55

Please sign in to comment.