Skip to content

Commit

Permalink
🔧 Minor updates on config files (#186)
Browse files Browse the repository at this point in the history
* Including package.json, CONTRIBUTING, dependabot.yml
  • Loading branch information
dongskyler authored Dec 15, 2020
1 parent 6769880 commit 9376d32
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ updates:
directory: /
schedule:
interval: daily
time: '14:00'
timezone: America/Chicago
time: '00:00'
timezone: UTC
labels:
- dependencies
rebase-strategy: auto
open-pull-requests-limit: 16
open-pull-requests-limit: 32
reviewers:
- BadwaterBay/maintainers
- package-ecosystem: npm
directory: /
schedule:
interval: daily
time: '14:00'
timezone: America/Chicago
time: '00:00'
timezone: UTC
labels:
- dependencies
rebase-strategy: auto
open-pull-requests-limit: 32
reviewers:
- BadwaterBay/maintainers
open-pull-requests-limit: 32
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ If you are stuck, you are welcome to reach out and leave a comment.
- Try `poetry install` to see if it solves your problems.
- If you run into problems with Node dependencies:
- Try `yarn --frozen-lockfile` to see if it solves your problems.
- If not, run `yarn refresh` to remove all dependencies in the `node_modules` directory and do a clean install of dependencies.
- If not, remove all dependencies in the `node_modules` directory and do a clean install of dependencies with `yarn --frozen-lockfile`.
---
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"url": "https://github.com/BadwaterBay/intelli-trip-planner/issues"
},
"scripts": {
"i": "yarn --frozen-lockfile && poetry install",
"export-r": "poetry export -f requirements.txt > requirements.txt",
"ci": "yarn --frozen-lockfile && poetry install",
"x-req": "poetry export -f requirements.txt > requirements.txt",
"format-js": "prettier --config '.prettierrc.yml' --write '**/*.{html,js,json,md,yaml,yml}'",
"format-py": "black . --verbose",
"format": "yarn format-js && yarn format-py",
Expand All @@ -25,8 +25,7 @@
"test": "python -m unittest discover -v -s tests -p 'test_*.py' -t src",
"coverage": "coverage run -m unittest discover -v -s tests -p 'test_*.py' -t src && coverage report -m && coverage xml",
"development": "bash 'src/bin/www.sh'",
"start": "yarn development",
"refresh": "rm -rf ./node_modules/ && yarn i"
"start": "yarn development"
},
"engines": {
"node": ">=12.0.0"
Expand Down

0 comments on commit 9376d32

Please sign in to comment.