Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit 89731a7

Browse files
authored
Merge pull request #36 from SqueezerIO/v1.1.13
V1.1.13
2 parents 666d953 + 282ce58 commit 89731a7

9 files changed

Lines changed: 16 additions & 9 deletions

File tree

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
public/
55
test-projects/
66
/docs
7+
coverage

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ install:
1414
- travis_retry npm install
1515

1616
script:
17+
- set -e
1718
- npm run eslint
1819
- npm run jsinspect
1920
- aws configure --profile squeezer-test set aws_access_key_id $aws_access_key_id
2021
- aws configure --profile squeezer-test set aws_secret_access_key $aws_secret_access_key
2122
- aws configure --profile squeezer-test set region us-east-1
2223
- aws configure --profile squeezer-test set output json
23-
- npm run test-units
24+
- npm run test
2425
- npm run test-integration
2526

2627
notifications:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Please note we have a code of conduct, please follow it in all your interactions
1414

1515
### Units
1616

17-
- `npm run test-units`
17+
- `npm run test`
1818

1919
### Integration
2020

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
### Chat : [chat.squeezer.io](http://chat.squeezer.io)
88

99
[![Build Status](https://travis-ci.org/SqueezerIO/squeezer.svg?branch=master)](https://travis-ci.org/SqueezerIO/squeezer)
10-
[![Coverage Status](https://coveralls.io/repos/github/SqueezerIO/squeezer/badge.svg?branch=master)](https://coveralls.io/github/SqueezerIO/squeezer?branch=master)
10+
<!--[![Coverage Status](https://coveralls.io/repos/github/SqueezerIO/squeezer/badge.svg?branch=master)](https://coveralls.io/github/SqueezerIO/squeezer?branch=master)-->
1111
[![npm version](https://badge.fury.io/js/squeezer-cli.svg)](https://badge.fury.io/js/squeezer-cli)
1212
[![Join the chat at https://gitter.im/SqueezerIO/squeezer](https://badges.gitter.im/SqueezerIO/squeezer.svg)](https://gitter.im/SqueezerIO/squeezer?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1313

@@ -74,9 +74,9 @@ NOTE: **Windows** users should [enable symlinks](http://answers.perforce.com/art
7474
| | cmd | description |
7575
|----|-----|--------------|
7676
| 1. | **npm install -g squeezer-cli** | Install Squeezer CLI |
77-
| 2. | [Configure AWS profile](https://docs.squeezer.io/clouds/aws/aws_profile.html) | AWS Profile |
78-
| 3. | **sqz create --project my-first-project --template aws-api-nodejs --email you@example.org** | Create a project |
79-
| 4. | **cd my-first-project** | Switch to the project's directory |
77+
| 2. | **sqz create --project my-first-project --template aws-api-nodejs --email you@example.org** | Create a project |
78+
| 3. | **cd my-first-project** | Switch to the project's directory |
79+
| 4. | [Configure AWS profile](https://docs.squeezer.io/clouds/aws/aws_profile.html) | AWS Profile |
8080
| 5. | **sqz install** | Install all requirements |
8181
| 5. | **sqz compile** | Compile microservices |
8282
| 7. | **sqz serve** | Simulates project on your local microservices platform<br>*NOTE* : Live reload enabled by default |

docs/clouds/aws/aws_profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ Default output format [None]: json
2525
#### Step 3 - Initiate the AWS profile for your Squeezer project
2626

2727
```
28-
$ sqz config --setting aws-profile --value my-first-project
28+
$ sqz config --setting aws_profile --value my-first-project
2929
```

lib/plugins/install/hooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
- identifier : 'project:install'
2-
path : 'lib'
2+
path : 'lib/index.js'
33
function : 'run'

lib/plugins/plugins.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": [
3+
"./test/index.js"
4+
]
5+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"url": "https://github.com/SqueezerIO/squeezer.git"
4848
},
4949
"scripts": {
50-
"test-units": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha test/units-runner.js --report lcovonly -- -R spec",
50+
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha test/units-runner.js -- -R spec --recursive",
5151
"test-integration": "docker rm squeezer-test >/dev/null 2>/dev/null ; docker run -ti --privileged --name squeezer-test -v `pwd`:/app -v $HOME/.aws:/root/.aws squeezerio/test node /app/node_modules/.bin/mocha /app/test/integration-runner.js --timeout 3600000",
5252
"eslint": "eslint . --cache",
5353
"jsinspect": "jsinspect -t 30 -i ./bin/ ./lib/ ./test/ --ignore './lib/plugins/serve/public'",

0 commit comments

Comments
 (0)