-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* - removed form since we are not using it in this form - cleared package json out of unused deps - removed lodash dep in favor of native js - tweaked eslint/prettier/ configs - enabled husky and lint-staged back - added dependabot config * added eslint ignore line in doc layout * batch major version updating * removed stale stories * added dependabot config; another deps update to wanted versions * tweaked labels settings in dependabot * - updated dependencies - tweaked dependabot config so that it will make not more than 1 PR once a month - it is now a mere trigger for manual batch update, those PRs create too much of a fuss - gatsby-remark-images now saved as exact version of 3.3.21 since all upcoming are broken when it comes to generate webp srcset path * keeping deps up to date * temporarily tweaked circleci settings to test changes in stagins * fixed circleci's config typo * revert back circleci config
- Loading branch information
Kirill Bolotsky
authored
Aug 18, 2020
1 parent
584f94c
commit bc038e3
Showing
35 changed files
with
4,711 additions
and
9,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Basic dependabot.yml file with | ||
# minimum configuration for one package manager | ||
|
||
version: 2 | ||
updates: | ||
# Enable version updates for npm | ||
- package-ecosystem: 'npm' | ||
# Look for `package.json` and `lock` files in the `root` directory | ||
directory: '/' | ||
# Check the npm registry for updates every month | ||
schedule: | ||
interval: 'monthly' | ||
# Set limit on amount of opened PRs with deps updates to 1: | ||
# previous experience with depndabot clearly shows, that | ||
# separate PRs create too much of a fuss so I intend | ||
# to use it as a mere once-a-month notifier that it is | ||
# time for batch manual deps update | ||
open-pull-requests-limit: 1 | ||
# Set the target branch | ||
target-branch: 'develop' | ||
# Set labels | ||
labels: | ||
- 'maintenance' | ||
- 'dependencies' | ||
# Set reviewers | ||
reviewers: | ||
- 'bolotskyDev' | ||
# Set assignees | ||
assignees: | ||
- 'bolotskyDev' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"*.js": ["eslint --cache --fix", "prettier --write"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.