Skip to content

Commit

Permalink
fix: semantic releases
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeNiemiec committed Jul 21, 2017
1 parent f56abe1 commit f5c72cb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '*'
before_script:
- npm prune
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "webpack-chunk-manifest-plugin",
"version": "3.0.0",
"version": "0.0.0",
"description": "Allows exporting a manifest that maps chunk ids to their output files, instead of keeping the mapping inside the webpack bootstrap.",
"main": "lib/ChunkManifestPlugin.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"no test specified\" && true",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Jake Niemiec <jake.j.niemiec@gmail.com> (https://twitter.com/jake_niemiec)",
"license": "MIT",
Expand All @@ -16,13 +17,15 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakeNiemiec/webpack-chunk-manifest-plugin.git"
"url": "https://github.com/jakeNiemiec/webpack-chunk-manifest-plugin.git"
},
"bugs": {
"url": "https://github.com/jakeNiemiec/webpack-chunk-manifest-plugin/issues"
},
"homepage": "https://github.com/jakeNiemiec/webpack-chunk-manifest-plugin#readme",
"devDependencies": {},
"devDependencies": {
"semantic-release": "^6.3.6"
},
"keywords": [
"webpack",
"webpack3",
Expand Down

0 comments on commit f5c72cb

Please sign in to comment.