Skip to content

Commit

Permalink
fix(tooling): added release automation and pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Brandon Farrell committed Jun 2, 2021
1 parent 7bf29cd commit 7eab994
Show file tree
Hide file tree
Showing 11 changed files with 5,680 additions and 921 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit $1
7 changes: 7 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"


npm run pre-commit
npx tsc

8 changes: 8 additions & 0 deletions .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

{
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add ."
]
}

1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] };
2 changes: 2 additions & 0 deletions lib/SmartText.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ var SmartText = function (_a) {
markdown = markdown.replace(/\*{1}(.*?)\*{1}/g, function (match, p1) { return "=S^t" + p1 + "S^t="; });
return markdown.split(/=/g).map(function (item, index) {
var text = item.replace(/(S\^t)/g, '');
/* tslint:disable */
// **Double** asterisk is bold
if (/(S\^t){2}(.*?)(S\^t){2}/.test(item)) {
return (React.createElement(LightText, { key: index, bold: true }, text));
Expand All @@ -149,6 +150,7 @@ var SmartText = function (_a) {
else if (/(S\^t){1}(.*?)(S\^t){1}/.test(item)) {
return (React.createElement(LightText, { key: index, italic: true }, text));
}
/* tslint:enable */
return text;
});
}
Expand Down
Loading

0 comments on commit 7eab994

Please sign in to comment.