Skip to content

Commit

Permalink
feat(init): initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
kmontag committed Nov 10, 2017
1 parent d5a06e4 commit 332db8d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 10 deletions.
20 changes: 14 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
language: node_js
sudo: false
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- "8.9"
install:
- npm install
script:
- npm test
- '9'
- '8'
- '6'
- '4'
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "protobufjs-loader",
"version": "0.1.0",
"description": "Webpack loader to translate protobuf definitions to ProtoBuf.js modules",
"version": "0.0.0-development",
"description": "Webpack loader to translate .proto definitions to ProtoBuf.js modules",
"main": "index.js",
"scripts": {
"test": "mocha test/*.test.js"
"test": "mocha test/*.test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"webpack",
Expand Down Expand Up @@ -32,6 +33,11 @@
"schema-utils": "^0.4.2",
"tmp": "0.0.31",
"uglify-loader": "^2.0.0",
"webpack": "^3.8.1"
"webpack": "^3.8.1",
"semantic-release": "^8.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kmontag/protobufjs-loader.git"
}
}

0 comments on commit 332db8d

Please sign in to comment.