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 language: node_js
sudo: false sudo: false
node_js: node_js:
- 5
- 6
- 7
- 8 - 8
- 9 - 9
before_install: before_install:

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
PARAMS=$* PARAMS=$*
for i in {1..20}; do for i in {1..20}; do
crunchy -u ${PARAMS} crunchy ${PARAMS}
if [ $? == 0 ]; then if [ $? == 0 ]; then
break break
fi fi

2
package-lock.json generated
View File

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

View File

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

View File

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