This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added self referencing and function execution
added changelog file
- Loading branch information
Patrick Camacho
committed
Sep 14, 2016
1 parent
669d740
commit 25f0fc6
Showing
6 changed files
with
119 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Change Log | ||
|
||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/docker/pulpo/releases) page. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@bonito/pulpo", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Configuration mechanism", | ||
"author": "Patrick Camacho <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -17,7 +17,8 @@ | |
"build": "tsc", | ||
"deps": "next-update --tldr --keep", | ||
"start": "npm run -s test -- --watch --coverage", | ||
"test": "jest" | ||
"test": "jest", | ||
"prepublish": "npm run -s test && npm run -s build" | ||
}, | ||
"devDependencies": { | ||
"jest-cli": "15.1.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"foo": { | ||
"bar": { | ||
"description": "nested schema key", | ||
"type": "string", | ||
"default": "${baz}/foo" | ||
} | ||
}, | ||
"baz": { | ||
"description": "top level value", | ||
"type": "string" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters