Skip to content

Commit 43fe590

Browse files
committed
Merge pull request #18 from Spy-Seth/prepare-version
Prepare version 0.1.0.
2 parents be81fae + d4cbce6 commit 43fe590

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Skippy is designed to be an easy to use, robust, and well tested dependencies co
1010
- Instantiate service as described in the dependencies configuration.
1111
- Configure what should be used as service constructor parameters: you can pass another services as reference, parameters, or any values you have configured.
1212
- Manage singleton instance of service (not defined by design pattern, but by configuration).
13-
- Check the dependencies graph to avoid cyclic dependencies (only on development environement: `process.env.NODE_ENV === 'development'`).
13+
- Check the dependencies graph to avoid cyclic dependencies (only on development environment: `NODE_ENV="development"`).
14+
- Allowing injection of service mock (only in test environment: `NODE_ENV="test"`).
1415

1516
#### What Skippy don't do (and never will)
1617
- Introspect JSDoc or parameters name to determine witch service should be inject in a constructor function. You have to define service dependencies in a configuration file.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skippy",
3-
"version": "0.0.4",
3+
"version": "0.1.0",
44
"description": "Simple and robust dependency container.",
55
"keywords": [
66
"container",

0 commit comments

Comments
 (0)