4 Commits

Author SHA1 Message Date
Godzil
b248405437 1.2.2 2018-05-09 22:33:45 +01:00
Godzil
bf941819a8 remove unwwanted parameter 2018-05-09 22:31:50 +01:00
Godzil
fcae53baae Node 5, 6 and 7 seems to not like something. Delete them from Travis build 2018-05-08 21:50:58 +01:00
Godzil
05ead50c0d Let's try to make travis happy with older node version 2018-05-08 21:49:11 +01:00
5 changed files with 5 additions and 7 deletions

View File

@@ -1,9 +1,6 @@
language: node_js
sudo: false
node_js:
- 5
- 6
- 7
- 8
- 9
before_install:

View File

@@ -1,10 +1,10 @@
#!/bin/bash
PARAMS=$*
for i in {1..20}; do
crunchy -u ${PARAMS}
crunchy ${PARAMS}
if [ $? == 0 ]; then
break
fi
echo "Going to retry..."
sleep 3
done
done

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "crunchy",
"version": "1.2.1",
"version": "1.2.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -15,7 +15,7 @@
"engines": {
"node": ">=5.0"
},
"version": "1.2.1",
"version": "1.2.2",
"bin": {
"crunchy": "./bin/crunchy",
"crunchy.sh": "./bin/crunchy.sh"

View File

@@ -1,4 +1,5 @@
{
"target": "es6",
"compilerOptions": {
"declaration": true,
"noImplicitAny": true,