-
Notifications
You must be signed in to change notification settings - Fork 1
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
Test adding someone back into the group #111
Changes from all commits
22e5fd6
acfaa9b
90d9f0e
c1e1d13
61269d3
9123c5c
438cfec
a1cd25f
c47037e
7a7e109
5457c45
5356f7b
909ae88
fc442e3
f438299
a89e9e4
2127602
07d785a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
"ssb" | ||
], | ||
"engines": { | ||
"node": ">=12" | ||
"node": ">=16" | ||
}, | ||
"main": "index.js", | ||
"files": [ | ||
|
@@ -78,7 +78,8 @@ | |
"test:raw": "tape 'test/**/*.test.js'", | ||
"test:only": "if grep -r --exclude-dir=node_modules --exclude-dir=.git --color 'test\\.only' ; then exit 1; fi", | ||
"test:bail": "npm run test:raw | tap-arc --bail", | ||
"test": "npm run test:raw | tap-arc && npm run test:only", | ||
"test": "npm run test:raw | tap-arc && npm run test:only && npm run lint", | ||
"lint": "eslint .", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good, I've been missing this - I caught an "unused var" the other day, or maybe undefined var. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. my editor's been running it automatically on save but realized we didn't have an official way of doing it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added to npm test |
||
"format-code": "prettier --write \"**/*.js\"", | ||
"format-code-staged": "pretty-quick --staged --pattern \"**/*.js\"", | ||
"coverage": "c8 --reporter=lcov npm run test" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This works, but you could do it will pull-streams tidily too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just seems slightly more complex?