Skip to content

Commit 0a168f1

Browse files
committed
Added babel and changed main file to built version's index
1 parent 9d2543a commit 0a168f1

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ coverage
2020
# node-waf configuration
2121
.lock-wscript
2222

23-
# Compiled binary addons (http://nodejs.org/api/addons.html)
24-
build/Release
23+
# Build directory
24+
build
2525

2626
# Dependency directory
2727
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Test directories
2+
spec
3+
build/spec

package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
"name": "nodegit-flow",
33
"version": "0.1.3",
44
"description": "nodegit-flow contains gitflow methods that aren't include in the vanilla nodegit package",
5-
"main": "src/index.js",
5+
"main": "build/src/index.js",
66
"scripts": {
7+
"compile": "babel --presets es2015 -d ./build/src ./src",
78
"eslint": "./node_modules/.bin/eslint src",
8-
"test": "./node_modules/.bin/jasmine-node spec"
9+
"prepublish": "babel --presets es2015 -d ./build/src ./src",
10+
"test": "npm run eslint && babel --presets es2015 -d ./build/spec ./spec && npm run compile && ./node_modules/.bin/jasmine-node build/spec"
911
},
1012
"repository": {
1113
"type": "git",
@@ -17,6 +19,9 @@
1719
"gitflow",
1820
"nodegit"
1921
],
22+
"files": [
23+
"build/src"
24+
],
2025
"author": "Jose Garcia",
2126
"license": "ISC",
2227
"bugs": {
@@ -27,6 +32,8 @@
2732
"nodegit": "^0.5.0"
2833
},
2934
"devDependencies": {
35+
"babel-cli": "^6.3.15",
36+
"babel-preset-es2015": "^6.3.13",
3037
"eslint": "^1.9.0",
3138
"jasmine-node": "^1.14.5",
3239
"jasmine-pit": "^2.0.2"

0 commit comments

Comments
 (0)