Skip to content

Commit d7f053e

Browse files
icd2k3jschrader-nr
andauthored
chore: maintain all dev dependencies and build process (#27)
Co-authored-by: Justin Schrader <jschrader@newrelic.com>
1 parent dcbe4fd commit d7f053e

22 files changed

+9717
-7154
lines changed

.eslintrc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22
"extends": [
33
"airbnb",
44
"plugin:@typescript-eslint/eslint-recommended",
5-
"plugin:@typescript-eslint/recommended",
6-
"plugin:prettier/recommended",
7-
"prettier/@typescript-eslint",
8-
"prettier/react"
5+
"plugin:@typescript-eslint/recommended"
96
],
107
"parser": "@typescript-eslint/parser",
118
"plugins": [
129
"@typescript-eslint",
13-
"prettier",
1410
"react-hooks"
1511
],
1612
"env": {
@@ -30,4 +26,4 @@
3026
"globals": {
3127
"jest": "writable"
3228
}
33-
}
29+
}

.github/workflows/nodejs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ on:
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

1716
strategy:
1817
matrix:
19-
node-version: [14.15.3]
18+
node-version: [15.14.0]
2019

2120
steps:
2221
- uses: actions/checkout@v2

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,11 @@
22
/dist/*
33
/yarn-error.log
44
/coverage
5+
.yarn/*
6+
!.yarn/patches
7+
!.yarn/releases
8+
!.yarn/plugins
9+
!.yarn/sdks
10+
!.yarn/versions
11+
.pnp.*
512
.DS_Store

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/commit-msg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn commitlint --edit $1

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn build && yarn lint && yarn test

.husky/pre-push

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn build && yarn types && yarn lint && yarn test-build

.npmignore

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,23 @@
22
.git/
33
.github/
44
.gitignore
5+
.gitignore
6+
.husky/
57
.npmignore
68
.nvmrc
7-
/yarn-error.log
9+
.yarn/
10+
.yarnrc.yml
11+
CONTRIBUTING.md
12+
MIGRATIONS.md
813
babel.config.js
914
commitlint.config.js
1015
coverage/
11-
coverage/
1216
hooks/
1317
jest.config.js
1418
jest.setup.js
1519
rollup.config.js
1620
scripts/
1721
src/
22+
tsconfig.json
23+
yarn-error.log
24+
yarn.lock

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v14.15.3
1+
v15.14.0

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 77 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)