Skip to content

Commit a7891e6

Browse files
committed
dev prerelease 1.3.2
1 parent 1a2006e commit a7891e6

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ install:
1111

1212
stages:
1313
- lint
14-
- name: gh-pages
14+
- name: gh_pages
1515
if: branch = master
16-
- name: release
16+
- name: github_release
1717
if: branch = master
1818

1919
jobs:
2020
include:
2121
- stage: lint
2222
script: npm run lint
23-
- stage: gh-pages
23+
- stage: gh_pages
2424
script: npm run build
2525
after_script:
2626
- cd ./example-dist
@@ -32,14 +32,20 @@ jobs:
3232
- git add .
3333
- git commit -m "update example page"
3434
- git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" gh-pages:gh-pages
35-
- stage: release
35+
- stage: github_release
3636
script: echo "Deploying to GitHub releases ..."
3737
deploy:
3838
provider: releases
3939
api_key: ${GH_TOKEN}
4040
skip_cleanup: true
4141
on:
4242
tags: true
43+
# - stage: npm_release
44+
# script: echo "Deploying to npm releases ..."
45+
# deploy:
46+
# provider: npm
47+
# email: ""
48+
# api_key: ""
4349

4450
# branches:
4551
# only:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-json-pretty",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "A Vue.js 2.0 Toolkit for json",
55
"author": "leezng <294795201@qq.com>",
66
"main": "vue-json-pretty.js",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import VueJsonPretty from './components/tree.vue'
22

33
export default Object.assign({}, VueJsonPretty, {
4-
version: '1.3.1'
4+
version: '1.3.2'
55
})

0 commit comments

Comments
 (0)