Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.2.1 #11

Merged
merged 15 commits into from Oct 25, 2020
4 changes: 3 additions & 1 deletion .eslintignore
Expand Up @@ -5,4 +5,6 @@ dist
# don't lint nyc coverage output
coverage
# any dot file
.*
.*
# any config file
*.config.js
6 changes: 4 additions & 2 deletions .eslintrc.js
Expand Up @@ -10,18 +10,20 @@ module.exports = {
'plugin:import/errors',
'plugin:import/warnings',
'plugin:@typescript-eslint/recommended',
'airbnb-base',
'standard',
'plugin:import/typescript',
'plugin:jest/all',
'prettier',
'prettier/@typescript-eslint',
],
plugins: ['@typescript-eslint', 'jest', 'prettier'],
plugins: ['@typescript-eslint', 'jest', 'standard', 'prettier'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2015,
project: './tsconfig.json',
},
rules: {
'prettier/prettier': 'error',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,5 +8,6 @@ node_modules

.vscode
.DS_Store
.eslintcache

dist
4 changes: 3 additions & 1 deletion .npmrc
Expand Up @@ -2,4 +2,6 @@ message=":rocket: Release %s"

# The “prerelease identifier” to use as a prefix for the “prerelease” part of a semver.
# Like the rc in 1.2.0-rc.8.
preid="rc"
preid="rc"

save-exact=true
5 changes: 3 additions & 2 deletions jest.config.js
Expand Up @@ -6,7 +6,8 @@ module.exports = {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
statements: 100
}
},
collectCoverageFrom: ['./src/*.{js,jsx}', '!**/node_modules/**', '!**/dist/**']
}