Skip to content

Commit 7c75e10

Browse files
committed
sailor 1.1.0
1 parent 962fa09 commit 7c75e10

File tree

3 files changed

+32
-9
lines changed

3 files changed

+32
-9
lines changed

.circleci/build_slug.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
echo "Building slug"
2+
id=$(git archive $CIRCLE_BRANCH | docker run -e "NPM_CONFIG_PRODUCTION=false" -i -a stdin elasticio/appbuilder)
3+
docker attach $id
4+
RC=$?
5+
if [ $RC -eq 0 ];then
6+
echo "Build ok."
7+
else
8+
echo "Build failed"
9+
exit 1
10+
fi

circle.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
machine:
2+
services:
3+
- docker
4+
5+
dependencies:
6+
override:
7+
- docker pull elasticio/appbuilder
8+
9+
test:
10+
override:
11+
- chmod 700 .circleci/build_slug.sh
12+
- .circleci/build_slug.sh
13+

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@
2020
"bugs": {
2121
"url": "https://github.com/elasticio/csv-component/issues"
2222
},
23-
"devDependencies": {
24-
"code-quality-js": "git+https://github.com/elasticio/code-quality-js.git#master",
25-
"git-guppy": "~1.0.0",
26-
"gulp": "^3.8.11",
27-
"gulp-jasmine": "^2.0.1",
28-
"gulp-jscs": "~1.6.0",
29-
"nock": "^2.17.0"
30-
},
3123
"homepage": "https://github.com/elasticio/csv-component#readme",
3224
"dependencies": {
3325
"csv": "^0.4.6",
3426
"debug": "^2.2.0",
3527
"elasticio-node": "0.0.7",
36-
"elasticio-sailor-nodejs": "^1.0.1",
28+
"elasticio-sailor-nodejs": "1.1.0",
3729
"moment": "^2.10.6",
3830
"node-uuid": "^1.4.3",
3931
"q": "^1.4.1",
4032
"request": "^2.65.0",
4133
"underscore": "^1.8.3"
34+
},
35+
"devDependencies": {
36+
"code-quality-js": "1.0.2",
37+
"git-guppy": "~1.0.0",
38+
"gulp": "^3.8.11",
39+
"gulp-jasmine": "^2.0.1",
40+
"gulp-jscs": "~1.6.0",
41+
"nock": "^2.17.0"
4242
}
4343
}

0 commit comments

Comments
 (0)