Skip to content

Commit

Permalink
Merge pull request #13 from cwrc/development
Browse files Browse the repository at this point in the history
Merge Development into Production
  • Loading branch information
lucaju authored Dec 3, 2020
2 parents 0ab9b89 + 04b7642 commit 14d68ce
Show file tree
Hide file tree
Showing 13 changed files with 1,484 additions and 2,788 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}
3 changes: 3 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"branches": ["master"]
}
28 changes: 16 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
os: linux
dist: bionic
language: node_js
cache:
directories:
- ~/.npm
cache: npm
notifications:
email: false
node_js:
- '14.5.0'
script:
- npm run test
after_success:
- npm run report-coverage
- npm run travis-deploy-once "npm run semantic-release"
branches:
only:
- master
- "14.15.1"
jobs:
include:
- stage: test
script: npm run test
- stage: npm release
if: branch = master
script:
- npm run report-coverage
- echo "Deploying to npm ..."
deploy:
provider: script
script: npx semantic-release
3 changes: 3 additions & 0 deletions changelog.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
maxMessageLength: 110,
};
16 changes: 0 additions & 16 deletions development.html

This file was deleted.

8 changes: 4 additions & 4 deletions issue_template.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!--- Provide a concise but specific and meaningful summary of the issue in the Title above -->

## Expected Behaviour
# Expected Behaviour
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->

## Current Behaviour
# Current Behaviour
<!--- If describing a bug, tell us what happens instead of the expected behaviour -->
<!--- If suggesting a change/improvement, explain the difference from current behaviour -->

## Possible Solution
# Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or suggestions on how to implement the addition or change -->

## Steps to Reproduce (for bugs)
# Steps to Reproduce (for bugs)
<!--- Provide an unambiguous set of steps to -->
<!--- reproduce this bug. Screenshots are invaluable. -->
<!--- Links to screen videos or brief .gif files can help a lot too. -->
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
statements: 85,
branches: 65,
functions: 85,
lines: 90,
lines: 85,
},
},
testMatch: ['**/test/**/*.[jt]s?(x)'],
Expand Down
Loading

0 comments on commit 14d68ce

Please sign in to comment.