Skip to content
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.

Commit

Permalink
feat: add release.config.js
Browse files Browse the repository at this point in the history
Hopefully closes#1

fix #3
  • Loading branch information
getaclue00 committed Dec 8, 2018
1 parent b0c1291 commit 3dc12ad
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
9 changes: 4 additions & 5 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
module.exports = {
testPathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/routes/redirector'
],
'use strict';

exports = module.exports = {
testPathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/coverage/'],
bail: true,
verbose: true,
collectCoverage: true
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "superawesomeredirector",
"version": "1.0.0",
"version": "0.0.0-development",
"description": "Super simple and super awesome link url redirector that just works.",
"main": "main.js",
"scripts": {
Expand Down
9 changes: 9 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict';

exports = module.exports = {
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/github'
]
};

0 comments on commit 3dc12ad

Please sign in to comment.