Skip to content

Commit

Permalink
Merge pull request #13 from hapinessjs/next
Browse files Browse the repository at this point in the history
release(version): v1.0.0
  • Loading branch information
akanass committed Oct 27, 2017
2 parents 708d02d + b8f41e8 commit 5cbcc85
Show file tree
Hide file tree
Showing 6 changed files with 485 additions and 531 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,7 +1,7 @@
pretest:
@node ./node_modules/.bin/tslint -p ./tsconfig.json --type-check "./src/**/*.ts" "./test/**/*.ts" --exclude "./src/**/*.d.ts"
@node ./node_modules/.bin/tslint -p ./tsconfig.json "./src/**/*.ts" "./test/**/*.ts"
test:
@node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./test
@node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha "./test/**/*.ts"
coveralls:
cat ./coverage/lcov.info | node ./node_modules/.bin/coveralls
tsc:
Expand Down
33 changes: 8 additions & 25 deletions README.md
Expand Up @@ -50,17 +50,18 @@ Configuration module based on [node-config](https://github.com/lorenwest/node-co
### `yarn` or `npm` it in your `package.json`

```bash
$ npm install --save @hapiness/config
$ npm install --save @hapiness/core @hapiness/config rxjs

or

$ yarn add @hapiness/config
$ yarn add @hapiness/core @hapiness/config rxjs
```

```javascript
"dependencies": {
"@hapiness/core": "^1.0.0-rc.6",
"@hapiness/config": "^1.0.0-rc.6",
"@hapiness/core": "^1.1.1",
"@hapiness/config": "^1.0.0",
"rxjs": "^5.5.2",
//...
}
//...
Expand Down Expand Up @@ -200,37 +201,19 @@ mymodule_database:

## Change History

* v1.0.0-rc.6 (2017-07-18)
* Latest packages versions.
* Config provider helper.
* Module version related to core version.
* v1.0.0-rc.4 (2017-07-11)
* Latest packages versions
* Module version related to core version.
* v1.0.0-beta.6 (2017-05-26)
* Latest packages versions
* Module version related to core version.
* v1.0.0-beta.5 (2017-05-15)
* Latest packages versions
* Module version related to core version.
* v1.0.0-beta.4 (2017-05-15)
* Latest packages versions
* Fix phony scripts
* Documentation.
* Module version related to core version.
* v1.0.0-beta.3 (2017-05-11)
* v1.0.0 (2017-10-27)
* Create `Config` module.
* Tests module.
* Documentation.
* Module version related to core version.
* First stable version.

[Back to top](#table-of-contents)

## Maintainers

<table>
<tr>
<td colspan="4" align="center"><a href="https://www.tadaweb.com"><img src="https://tadaweb.com/images/tadaweb/logo.png" width="117" alt="tadaweb" /></a></td>
<td colspan="4" align="center"><a href="https://www.tadaweb.com"><img src="http://bit.ly/2xHQkTi" width="117" alt="tadaweb" /></a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/Juneil"><img src="https://avatars3.githubusercontent.com/u/6546204?v=3&s=117" width="117"/></a></td>
Expand Down
36 changes: 18 additions & 18 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@hapiness/config",
"version": "1.0.0-rc.6.1",
"version": "1.0.0",
"description": "Configuration Library to use it inside Hapiness framework",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -58,33 +58,33 @@
},
"homepage": "https://github.com/hapinessjs/config#readme",
"dependencies": {
"@types/config": "^0.0.32",
"@types/node": "^8.0.17",
"@types/config": "^0.0.33",
"@types/node": "^8.0.47",
"clone": "^2.1.1",
"config": "^1.26.1",
"debug": "^2.6.8",
"js-yaml": "^3.8.4"
"config": "^1.27.0",
"debug": "^3.1.0",
"js-yaml": "^3.10.0"
},
"devDependencies": {
"@hapiness/core": "^1.0.0-rc.6",
"@types/fs-extra": "^4.0.0",
"coveralls": "^2.13.1",
"fs-extra": "^4.0.0",
"@hapiness/core": "^1.1.1",
"@types/fs-extra": "^4.0.3",
"coveralls": "^3.0.0",
"fs-extra": "^4.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.4.2",
"mocha-typescript": "^1.1.7",
"rimraf": "^2.6.1",
"rxjs": "^5.4.2",
"mocha": "^4.0.1",
"mocha-typescript": "^1.1.12",
"rimraf": "^2.6.2",
"rxjs": "^5.5.2",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "^2.4.2",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"unit.js": "^2.0.0"
},
"engines": {
"node": ">=7.0.0"
},
"peerDependencies": {
"@hapiness/core": "^1.0.0-rc.6",
"rxjs": "^5.4.2"
"@hapiness/core": "^1.1.1",
"rxjs": "^5.5.2"
}
}
2 changes: 1 addition & 1 deletion test/mocha.opts
Expand Up @@ -2,6 +2,6 @@
--report lcovonly
--reporter spec
--recursive
--compilers ts:ts-node/register
--require ts-node/register
--throw-deprecation
--colors
1 change: 1 addition & 0 deletions tsconfig.build.json
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"outDir": ".",
"rootDir": "./src",
"types": [
Expand Down

0 comments on commit 5cbcc85

Please sign in to comment.