Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Don't use extensions for binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
leo committed Sep 3, 2016
1 parent cff7d49 commit e60ce85
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions gulpfile.babel.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import gulp from 'gulp'
import babel from 'gulp-babel'
import cache from 'gulp-cached'
import {crop as cropExt} from 'gulp-ext'

const paths = {
bin: 'bin/*',
Expand All @@ -18,7 +17,6 @@ gulp.task('bin', () =>
gulp.src(paths.bin)
.pipe(cache('bin'))
.pipe(babel())
.pipe(cropExt())
.pipe(gulp.dest('dist/bin')))

gulp.task('watch', () => {
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"license": "MIT",
"preferGlobal": true,
"bin": {
"cory": "dist/bin/index",
"cory": "dist/bin/main",
"cory-serve": "dist/bin/serve",
"cory-build": "dist/bin/build",
"cory-init": "dist/bin/init",
Expand Down Expand Up @@ -73,7 +73,6 @@
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cached": "^1.1.0",
"gulp-ext": "^1.0.0",
"xo": "^0.16.0"
}
}

0 comments on commit e60ce85

Please sign in to comment.