Skip to content

Commit

Permalink
fix: semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Aug 19, 2018
2 parents 6678105 + d08a42b commit 116c26c
Show file tree
Hide file tree
Showing 5 changed files with 1,481 additions and 793 deletions.
22 changes: 12 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- 'stable'

caches: 'yarn'

before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
# Only the node version 6 job will upload the lockfile
after_script: greenkeeper-lockfile-upload
- '10'
- '8'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,11 @@
</p>

<p align='center'>
<a href="https://greenkeeper.io/" title="Dependencies">
<img src="https://badges.greenkeeper.io/mike-works/web-security-fundamentals.svg"/>
</a>

<a href="https://travis-ci.org/mike-works/web-security-fundamentals" title="Build Status">
<img title="Build Status" src="https://travis-ci.org/mike-works/web-security-fundamentals.svg?branch=master"/>
</a>
<a href="https://mike.works/course/web-security-5c876cc" title="Web Security for Web Developers">
<img title="Course Outline" src="https://img.shields.io/badge/mike.works-course%20outline-blue.svg"/>
</a>
<a href="https://docs.mike.works/web-security-fundamentals)" title="Slides">
<img title="Slides" src="https://img.shields.io/badge/mike.works-slides-blue.svg"/>
</a>

</p>
<p align='center'>
This is the project used for the <a title="Mike.Works" href="https://mike.works">Mike.Works</a> <a title="Web Security for Web Developers" href="https://mike.works/course/web-security-5c876cc">Web Security for Web Developers</a> course.
Expand Down
23 changes: 14 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "mikeworks-websec",
"version": "1.0.0",
"name": "@mike-works/web-security-fundamentals",
"version": "0.0.0-development",
"private": true,
"scripts": {
"start": "./node_modules/.bin/nodemon -e js --watch server index.js",
"test": "echo 'no tests'"
"test": "echo 'no tests'",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {
"bcrypt": "^3.0.0",
Expand All @@ -31,14 +33,14 @@
"node-exiftool": "2.3.0",
"nodemon": "^1.18.3",
"sequelize": "^4.38.0",
"serve-favicon": "~2.4.2",
"serve-favicon": "~2.5.0",
"sqlite3": "^4.0.0"
},
"description": "Mike Works Web Security course",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mike-works/web-security-fundamentals.git"
"url": "https://github.com/mike-works/web-security-fundamentals.git"
},
"keywords": [
"web-security",
Expand All @@ -62,6 +64,10 @@
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-preset-stage-3": "^6.24.1",
"greenkeeper-lockfile": "^1.15.1"
"travis-deploy-once": "^5.0.2",
"semantic-release": "^15.9.9"
},
"release": {
"extends": "@mike-works/workshop-semantic-release-config"
}
}
Loading

0 comments on commit 116c26c

Please sign in to comment.