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

major: v6 of parse-function #72

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Empty file added @types/.gitkeep
Empty file.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at `open.source.charlike@gmail.com` mail address. All
reported by contacting the project team at `hello@tunnckocore.com` mail address. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,20 @@
"clean:dist": "rm -rf configs/*/dist packages/*/dist @tunnckocore/*/dist",
"clean:fresh": "lerna clean -y && rm -rf node_modules",
"cleanup": "yarn clean:dist && yarn clean:fresh",
"cmt": "LOCAL_TESTING=0 CI=1 yarn start test -u && yarn testy && git status --porcelain",
"cr": "node create-package.js",
"patch:hela": "cp patches/hela-cli/* node_modules/@hela/cli/dist/build/cjs/",
"patch:sade": "cp patches/sade/* node_modules/sade/lib/",
"patch:verb": "cp patches/verb-repo-helpers/index.js node_modules/verb-repo-helpers/index.js",
"postsetup": "yarn patch:verb && yarn patch:hela && yarn patch:sade",
"postsetup:ci": "yarn patch:verb && yarn patch:hela && yarn patch:sade",
"pre-commit": "yarn docs && yarn fmt",
"pre-commit": "echo nothing",
"refresh": "yarn cleanup && yarn setup",
"release": "lerna version && lerna publish from-package",
"setup": "yarn && yarn bootstrap",
"setup:ci": "yarn --frozen-lockfile && yarn bootstrap",
"start": "node node_modules/@hela/cli/dist/build/cjs/cli.js",
"test": "CI=1 yarn start test",
"test": "FORCE_COLOR=1 CI=1 LOCAL_TESTING=1 yarn start test",
"testy": "node generate-coverage-info.js && yarn start docs && yarn start format"
},
"dependencies": {
Expand Down Expand Up @@ -70,8 +71,8 @@
},
"husky": {
"hooks": {
"pre-commit": "echo 'yarn run pre-commit'",
"commit-msg": "echo 'commitlint -E HUSKY_GIT_PARAMS'"
"pre-commit": "yarn run pre-commit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
Expand Down