Skip to content

Commit

Permalink
Released version 4.1.3, fixes for browserify
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Mar 17, 2015
1 parent 6310063 commit 053f4f5
Show file tree
Hide file tree
Showing 9 changed files with 17,974 additions and 18,278 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
https://github.com/josdejong/jsoneditor


## 2015-03-17, version 4.1.3

- Fixed broken bundling with browserify: the `jsonlint` package was requiring
missing dependencies.


## 2015-03-15, version 4.1.2

- Fixed broken bower package 4.1.1.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ jsoneditor:
The source code of JSONEditor consists of CommonJS modules. To create a custom
bundle of the source code, [browserify](http://browserify.org/) can be used:

browserify ./index.js -o ./jsoneditor.custom.js -s JSONEditor --ignore-missing
browserify ./index.js -o ./jsoneditor.custom.js -s JSONEditor

The Ace editor, used in mode `code`, accounts for about 75% of the total
size of the library. To exclude the Ace editor from the bundle:

browserify ./index.js -o ./jsoneditor.custom.js -s JSONEditor --ignore-missing -x brace -x brace/mode/json -x brace/ext/searchbox
browserify ./index.js -o ./jsoneditor.custom.js -s JSONEditor -x brace -x brace/mode/json -x brace/ext/searchbox

To minify the generated bundle, use [uglifyjs](https://github.com/mishoo/UglifyJS2):

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsoneditor",
"version": "4.1.2",
"version": "4.1.3",
"description": "A web-based tool to view, edit and format JSON",
"tags": [
"json",
Expand Down
Loading

0 comments on commit 053f4f5

Please sign in to comment.