-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mesmo
committed
Sep 18, 2016
1 parent
e6c763e
commit 7b47842
Showing
3 changed files
with
9 additions
and
9 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
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 @@ | ||
## Deliverables | ||
state.js comprises the following files: | ||
* **state.js:** for use in web pages; include this using the HTML script element. | ||
* **state.min.js:** a minified version of state.js. | ||
* **state.com.js:** for use in node; this is the target file when using ```require("state,js")```. | ||
* **state.com.d.ts:** this a TypeScript declaration file. | ||
* **web/state.js:** for use in web pages; include this using the HTML script element. | ||
* **web/state.min.js:** a minified version of state.js. | ||
* **node/state.js:** for use in node; this is the target file when using ```require("state.js")```. | ||
* **node/state.d.ts:** this a TypeScript declaration file. |
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 |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
"David Mesquita-Morris <[email protected]>" | ||
], | ||
"description": "Hierarchical finite state machine", | ||
"main": "./lib/node/state.com", | ||
"typings": "./lib/node/state.com.d.ts", | ||
"main": "./lib/node/state", | ||
"typings": "./lib/node/state.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/steelbreeze/state.js" | ||
|