Skip to content

Commit

Permalink
🔖 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yourtion committed Nov 29, 2018
1 parent 1fb658b commit 4d24fb0
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
repo_token: Fybnzn6f3uZVXKohjjSPxsusD5X6eI8Ig

20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
[![NPM version][npm-image]][npm-url]
[![build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
[![David deps][david-image]][david-url]
[![npm download][download-image]][download-url]
[![npm license][license-image]][download-url]

[npm-image]: https://img.shields.io/npm/v/vue-json-ui-editor.svg?style=flat-square
[npm-url]: https://npmjs.org/package/vue-json-ui-editor
[travis-image]: https://img.shields.io/travis/yourtion/vue-json-ui-editor.svg?style=flat-square
[travis-url]: https://travis-ci.org/yourtion/vue-json-ui-editor
[coveralls-image]: https://img.shields.io/coveralls/yourtion/vue-json-ui-editor.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/yourtion/vue-json-ui-editor?branch=master
[david-image]: https://img.shields.io/david/yourtion/vue-json-ui-editor.svg?style=flat-square
[david-url]: https://david-dm.org/yourtion/vue-json-ui-editor
[download-image]: https://img.shields.io/npm/dm/vue-json-ui-editor.svg?style=flat-square
[download-url]: https://npmjs.org/package/vue-json-ui-editor
[license-image]: https://img.shields.io/npm/l/vue-json-ui-editor.svg

# json-editor

[![Greenkeeper badge](https://badges.greenkeeper.io/yourtion/vue-json-ui-editor.svg)](https://greenkeeper.io/)
[![DeepScan grade](https://deepscan.io/api/teams/2046/projects/2774/branches/19927/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=2046&pid=2774&bid=19927)

Edit JSON in UI form with JSON Schema and Vue.js `<json-editor>` component.

Expand Down
4 changes: 2 additions & 2 deletions lib/json-editor.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ return /******/ (function(modules) { // webpackBootstrap
/* 0 */
/***/ (function(module, exports) {

var core = module.exports = { version: '2.5.6' };
var core = module.exports = { version: '2.5.7' };
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef


Expand Down Expand Up @@ -440,7 +440,7 @@ var defaultGroup = { component: 'div', option: option };
created: function created() {
Object(__WEBPACK_IMPORTED_MODULE_4__parser__["a" /* loadFields */])(this, Object(__WEBPACK_IMPORTED_MODULE_5__utils__["deepClone"])(this.schema));
this.default = Object(__WEBPACK_IMPORTED_MODULE_5__utils__["deepClone"])(this.value);
this.data = Object(__WEBPACK_IMPORTED_MODULE_5__utils__["deepClone"])(this.value);
this.data = this.value;
},
render: function render(createElement) {
var _this3 = this;
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-json-ui-editor",
"version": "0.9.0",
"version": "1.0.0",
"description": "Edit JSON in UI form with JSON Schema and Vue.js",
"author": "YourtionGuo <yourtion@gmail.com>",
"scripts": {
Expand All @@ -9,7 +9,7 @@
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src test example --fix",
"dist": "npm test && webpack --config build/webpack.dist.conf.js && export TEST_LIB=true && jest --config test/jest.conf.js",
"prepublishOnly": "npm run dist",
"prepublishOnly": "npm run dist && cat ./coverage/lcov.info | coveralls",
"docs": "vuedoc.md src/JsonEditor.vue",
"build": "node build/build.js"
},
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"homepage": "https://github.com/yourtion/vue-json-ui-editor#readme",
"peerDependencies": {
"vue": "^2.5.16"
"vue": "*"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.18",
Expand All @@ -58,6 +58,7 @@
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.3.2",
"copy-webpack-plugin": "^4.5.2",
"coveralls": "^3.0.2",
"css-loader": "^0.28.0",
"element-ui": "^2.4.11",
"eslint": "^5.9.0",
Expand Down

0 comments on commit 4d24fb0

Please sign in to comment.