-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from leezng/dev
release 1.1.0
- Loading branch information
Showing
16 changed files
with
199 additions
and
45 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- "7" | ||
- "10" | ||
|
||
cache: | ||
directories: | ||
|
@@ -23,16 +23,16 @@ jobs: | |
- stage: gh_pages | ||
script: npm run build | ||
after_script: | ||
- cd ./example-dist | ||
- git init | ||
- git remote add origin "https://${GH_TOKEN}@${GH_REF}" | ||
- git checkout -b gh-pages | ||
- git clone -b gh-pages "https://${GH_TOKEN}@${GH_REF}" gh-pages | ||
- rm -r gh-pages/* | ||
- cp -r example-dist/. gh-pages | ||
- cd ./gh-pages | ||
- git config user.name "leezng" | ||
- git config user.email "[email protected]" | ||
- git add . | ||
- git commit -m "update example page" | ||
- git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" gh-pages:gh-pages | ||
- git commit -m "update gh-pages" | ||
- git push --quiet "https://${GH_TOKEN}@${GH_REF}" gh-pages:gh-pages | ||
|
||
env: | ||
global: | ||
- GH_REF: github.com/leezng/el-form-renderer.git | ||
- GH_REF: github.com/leezng/element-patch.git |
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
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
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,7 @@ | ||
{ | ||
"tag-select": "./src/components/tag-select/index.vue", | ||
"form-renderer": "./src/plugs/form-renderer/index.js", | ||
"menu-renderer": "./src/plugs/menu-renderer/index.js", | ||
"table": "./src/plugs/table/index.js", | ||
"tree-select": "./src/plugs/tree-select/index.vue" | ||
} |
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
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
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
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,11 @@ | ||
## 更新日志 | ||
|
||
### 1.1.0 | ||
|
||
- Table 组件增加拖拽排序的位置提示线条 | ||
- 提供按需加载到使用方式 | ||
|
||
|
||
### 1.0.0 | ||
|
||
- 从 `el-form-renderer` 升级到 `element-patch`,[迁移指南](#/start) |
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
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
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
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,9 +1,9 @@ | ||
{ | ||
"name": "element-patch", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "A Vue.js project", | ||
"author": "leezng <[email protected]>", | ||
"main": "element-patch.js", | ||
"main": "lib/element-patch.js", | ||
"scripts": { | ||
"dev": "node build/dev-server.js", | ||
"dist": "cross-env DIST_ENV=true npm run build", | ||
|
@@ -43,6 +43,7 @@ | |
"babel-register": "^6.22.0", | ||
"chalk": "^2.0.1", | ||
"cheerio": "^0.18.0", | ||
"clean-webpack-plugin": "^1.0.1", | ||
"connect-history-api-fallback": "^1.3.0", | ||
"copy-webpack-plugin": "^4.0.1", | ||
"cross-env": "^5.1.3", | ||
|
Oops, something went wrong.