This repository has been archived by the owner on May 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
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 #4 from panter/chore/semantic-release
chore: semantic-release
- Loading branch information
Showing
3 changed files
with
11 additions
and
5 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 |
---|---|---|
|
@@ -2,3 +2,5 @@ language: node_js | |
node_js: | ||
- "6" | ||
cache: yarn | ||
after_success: | ||
- npm run semantic-release |
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,12 +1,12 @@ | ||
{ | ||
"name": "@panter/vue-i18next", | ||
"description": "i18next wrapper for vue", | ||
"version": "0.4.0", | ||
"version": "0.4.0-development", | ||
"author": "Claudio Romano <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/panter/vue-i18next.git" | ||
"url": "https://github.com/panter/vue-i18next.git" | ||
}, | ||
"homepage": "https://github.com/panter/vue-i18next#readme", | ||
"bugs": "https://github.com/panter/vue-i18next/issues", | ||
|
@@ -27,7 +27,8 @@ | |
"test": "npm run lint && npm run test:unit", | ||
"test:unit": "cross-env BABEL_ENV=test karma start test/karma.conf.js", | ||
"gh-pages": "npm run build && rimraf ./gh-pages && mkdirp ./gh-pages/examples mkdirp ./gh-pages/dist && ncp ./examples ./gh-pages/examples && ncp ./dist ./gh-pages/dist", | ||
"gh-pages-publish": "gh-pages -d gh-pages" | ||
"gh-pages-publish": "gh-pages -d gh-pages", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post" | ||
}, | ||
"main": "./dist/vue-i18next.js", | ||
"peerDependencies": { | ||
|
@@ -83,7 +84,8 @@ | |
"vue-loader": "^10.0.0", | ||
"vue-template-compiler": "^2.1.0", | ||
"webpack": "^2.2.0", | ||
"webpack-dev-server": "^2.2.0" | ||
"webpack-dev-server": "^2.2.0", | ||
"semantic-release": "^6.3.6" | ||
}, | ||
"dependencies": {} | ||
} |