-
Notifications
You must be signed in to change notification settings - Fork 64
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
Travis CI User
committed
May 31, 2019
1 parent
cd0482f
commit 66af133
Showing
2 changed files
with
25 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
### 1.5.6 (2019-05-31) |
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,15 +1,23 @@ | ||
{ | ||
"name": "@femessage/el-form-renderer", | ||
"version": "1.5.5", | ||
"version": "1.5.6", | ||
"description": "render form-item easily", | ||
"author": "leezng <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/FEMessage/el-form-renderer.git" | ||
}, | ||
"contributors": ["https://github.com/FEMessage"], | ||
"keywords": ["vue", "element", "render", "form", "component"], | ||
"contributors": [ | ||
"https://github.com/FEMessage" | ||
], | ||
"keywords": [ | ||
"vue", | ||
"element", | ||
"render", | ||
"form", | ||
"component" | ||
], | ||
"files": [ | ||
"src", | ||
"yarn.lock", | ||
|
@@ -26,14 +34,10 @@ | |
"scripts": { | ||
"dev": "vue-styleguidist server", | ||
"doc": "vue-styleguidist build", | ||
"build": | ||
"npm run build:unpkg & npm run build:es & npm run build:umd & npm run doc", | ||
"build:umd": | ||
"rollup --config build/rollup.config.js --format umd --file dist/el-form-renderer.umd.js", | ||
"build:es": | ||
"rollup --config build/rollup.config.js --format es --file dist/el-form-renderer.esm.js", | ||
"build:unpkg": | ||
"rollup --config build/rollup.config.js --format iife --file dist/el-form-renderer.min.js", | ||
"build": "npm run build:unpkg & npm run build:es & npm run build:umd & npm run doc", | ||
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/el-form-renderer.umd.js", | ||
"build:es": "rollup --config build/rollup.config.js --format es --file dist/el-form-renderer.esm.js", | ||
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/el-form-renderer.min.js", | ||
"precommit": "pretty-quick --staged", | ||
"stdver": "standard-version -m '[skip ci] chore(release): v%s'", | ||
"release": "gren release --override" | ||
|
@@ -75,7 +79,11 @@ | |
"npm": ">= 3.0.0" | ||
}, | ||
"vue-sfc-cli": "1.9.0", | ||
"browserslist": ["> 1%", "last 2 versions", "not ie <= 8"], | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
], | ||
"dependencies": { | ||
"lodash.get": "^4.4.2", | ||
"lodash.set": "^4.3.2" | ||
|