Skip to content

Commit

Permalink
v0.3.16
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed May 15, 2013
1 parent e056356 commit de11c75
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
v0.3.16 -- 2013.05.15
Nearly *major* update
* JSON files support
* Support for custom formats via extensions (in parallel to this update
extensions for YAML and CoffeeScript are published).
* Improved relative module resolution so it's on pair with Node.js design
(there were corner case where resolution result differed).
* Introduce optional caching mechanism for repeated bundle generation.
If request file has not been modified since last read its content and
calculated dependencies list are taken from a cache. When used, speeds up
Webmake around x2, and even more if used with extensions.
* Improve error messages on unsupported require calls

v0.3.15 -- 2013.04.08
Minor improvements:
* Meaningful error when run with unsupported Node engine
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webmake",
"version": "0.3.15",
"version": "0.3.16",
"description": "Bundle CommonJS modules into single script for web browser",
"keywords": [
"browser",
Expand Down Expand Up @@ -37,7 +37,7 @@
"node": ">=0.8"
},
"dependencies": {
"deferred": "~0.6.3",
"deferred": "~0.6.4",
"es5-ext": "~0.9.2",
"find-requires": "~0.1.5",
"fs2": "~0.1.5",
Expand All @@ -48,7 +48,7 @@
"test": "node ./node_modules/tad/bin/tad lib"
},
"devDependencies": {
"tad": "~0.1.15"
"tad": "~0.1.16"
},
"licence": "MIT",
"optionalDependencies": {}
Expand Down

0 comments on commit de11c75

Please sign in to comment.