Skip to content

Commit

Permalink
Add circle ci configuration with semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
marconi1992 committed Sep 12, 2019
1 parent 26a6ef7 commit 19a299b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
jobs:
build:
docker:
- image: 'circleci/node:latest'
steps:
- checkout
- run:
name: install
command: npm install
- run:
name: release
command: npm run semantic-release || true
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ara/webpack-nova-consumer",
"version": "1.0.0",
"version": "0.0.0-development",
"main": "index.js",
"license": "MIT",
"repository": {
Expand All @@ -10,12 +10,16 @@
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
"eslint-plugin-import": "^2.18.2",
"semantic-release": "^15.13.24"
},
"dependencies": {
"sockjs-client": "^1.4.0"
},
"peerDependencies": {
"html-webpack-plugin": "^3.0.1"
},
"scripts": {
"semantic-release": "semantic-release"
}
}

0 comments on commit 19a299b

Please sign in to comment.