Skip to content

Commit bb98805

Browse files
authored
Release/0.0.9 (#2)
1 parent 42b53e4 commit bb98805

25 files changed

+1437
-79
lines changed

.env.example

Whitespace-only changes.

.eslintrc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,21 @@
1414
"plugin:prettier/recommended",
1515
"prettier"
1616
],
17+
"overrides": [
18+
{
19+
"files": [
20+
"**/*.test.js"
21+
],
22+
"env": {
23+
"mocha": true
24+
},
25+
"plugins": ["mocha"],
26+
"rules": {
27+
"mocha/no-exclusive-tests": "error",
28+
"mocha/no-pending-tests": "error"
29+
}
30+
}
31+
],
1732
"rules": {
1833
"import/no-extraneous-dependencies": "off",
1934
"import/extensions": "off",

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Release 0.0.10
2+
3+
- [WIP] Tests
4+
- [WIP] Git sync options
5+
- [WIP] Shell command execution
6+
7+
Release 0.0.9
8+
9+
- Environments, and env management
10+
- Override values from yaml from .env using {{}} pattern
11+
- Snippets, used for quick installation
12+
- ~~ Analytics~~ Replaced with feedback program (We belive in privacy by default)
13+
- Optimize node_modules deployment, such that we can deploy app without zip-ing dependencies
14+
- Check for new version and updates
15+
- Shell command execution on metadata apply as post apply script
16+
117
Release 0.0.8
218

319
- New initialization template

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# hlambda-cli [![npm version](https://badge.fury.io/js/hlambda-cli.svg)](https://www.npmjs.com/package/hlambda-cli )
22

3-
hlambda-cli - CLI tool for managing hlambda server.
3+
hlambda-cli - CLI tool for managing Hlambda server.
44

55
[![NPM](https://nodei.co/npm/hlambda-cli.png?downloads=true&downloadRank=true&stars=true)](https://npmjs.org/hlambda-cli )
66

@@ -11,6 +11,12 @@ hlambda-cli - CLI tool for managing hlambda server.
1111
$ npm install -g hlambda-cli
1212
```
1313

14+
This will add Hlambda CLI to your arsenal, now you can use `hl`, `hla` or `hlambda` to check if CLI is working as expected.
15+
16+
````console
17+
$ hlambda
18+
````
19+
1420
## Example
1521

1622
First you will need to get hlambda server running, either in docker or locally.

0 commit comments

Comments
 (0)