BREAKING CHANGE(scope): change scope to @pushrocks/

This commit is contained in:
2018-08-13 00:09:37 +02:00
parent 26104a231d
commit 2b3198c5bb
21 changed files with 1055 additions and 717 deletions

View File

@ -1,18 +1,18 @@
## Usage
Use TypeScript for best in class instellisense.
qenv works with two files:
* **qenv.yml** - specifies which ENV vars are required.
* **env.yml** - specifies all env vars that are not already set in the current environment.
- **qenv.yml** - specifies which ENV vars are required.
- **env.yml** - specifies all env vars that are not already set in the current environment.
Now obviously you can set build specific env vars in many CI environments.
So there we do not need an **env.yml** since all ENV vars are in place
However when on another machine you can have a env.yml that will be added to the environment by qenv.
```javascript
import {Qenv} from "qenv";
import { Qenv } from 'qenv';
myQenv = new Qenv("path/to/dir/where/qenv.yml/is/","path/to/dir/where/env.yml/is(");
```
myQenv = new Qenv('path/to/dir/where/qenv.yml/is/', 'path/to/dir/where/env.yml/is(');
```