Skip to content

Commit a2cb3b9

Browse files
committed
Merge remote-tracking branch 'origin/main' into main
2 parents 6b676f1 + 04c3741 commit a2cb3b9

File tree

9 files changed

+1067
-107
lines changed

9 files changed

+1067
-107
lines changed

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"printWidth": 120,
4+
"tabWidth": 2
5+
}

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
dist: trusty
2+
sudo: required
3+
language: node_js
4+
node_js:
5+
- "12"
6+
7+
os:
8+
- linux
9+
10+
jobs:
11+
include:
12+
- stage: install
13+
script: npm install
14+
skip_cleanup: true
15+
- stage: test
16+
script: npm run test
17+
skip_cleanup: true
18+
- stage: Build & publish
19+
script:
20+
- npm run build
21+
# - TODO - first we need to setup Travis - npx semantic-release
22+
if: branch = master

builders.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

commitlint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = { extends: ["@commitlint/config-conventional"] };

0 commit comments

Comments
 (0)