Skip to content

Commit

Permalink
Merge pull request #52 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 9e4d2c1 + 7c15ee2 commit f127a2c
Show file tree
Hide file tree
Showing 9 changed files with 1,678 additions and 19,913 deletions.
8 changes: 5 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"presets": [
["@babel/preset-env", {"corejs": 3, "useBuiltIns": "entry"}],
["@babel/preset-env", {
"corejs": 3,
"useBuiltIns": "entry"
}],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
["@babel/plugin-transform-runtime", {
"regenerator": true
}]
]
}
}
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,
};
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
Loading

0 comments on commit f127a2c

Please sign in to comment.