Released version 4.1.2
This commit is contained in:
parent
45b1941f95
commit
6310063494
10
HISTORY.md
10
HISTORY.md
|
@ -3,6 +3,16 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## 2015-03-15, version 4.1.2
|
||||
|
||||
- Fixed broken bower package 4.1.1.
|
||||
|
||||
|
||||
## 2015-03-15, version 4.1.1
|
||||
|
||||
- Added missing file `index.js` to the bower package.
|
||||
|
||||
|
||||
## 2015-03-15, version 4.1.0
|
||||
|
||||
- Implemented a function `focus()` for modes tree, view, and form.
|
||||
|
|
10
bower.json
10
bower.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "4.1.0",
|
||||
"version": "4.1.2",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
"json",
|
||||
|
@ -23,13 +23,11 @@
|
|||
"node_modules",
|
||||
"test",
|
||||
"tools",
|
||||
".idea",
|
||||
"gulpfile.js",
|
||||
"index.js",
|
||||
"package.json",
|
||||
"npm-debug.log",
|
||||
".idea",
|
||||
".npmignore",
|
||||
".gitignore",
|
||||
"npm-debug.log"
|
||||
".gitignore"
|
||||
],
|
||||
"dependencies": {}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -115,7 +115,7 @@ gulp.task('minify', ['bundle'], function () {
|
|||
// TODO: zip file using archiver
|
||||
var pkg = 'jsoneditor-' + require('./package.json').version + '.zip';
|
||||
gulp.task('zip', shell.task([
|
||||
'zip ' + pkg + ' ' + 'README.md NOTICE LICENSE HISTORY.md dist docs examples -r '
|
||||
'zip ' + pkg + ' ' + 'README.md NOTICE LICENSE HISTORY.md index.html src dist docs examples -r '
|
||||
]));
|
||||
|
||||
// The default task (called when you run `gulp`)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "4.1.0",
|
||||
"version": "4.1.2",
|
||||
"main": "./index",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue