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

fix: lock file maintenance #37

Merged
merged 1 commit into from
Mar 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "@dword-design/eslint-config"
}
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
steps:
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: rokroskar/[email protected].0
uses: rokroskar/[email protected].2
release:
needs: test
runs-on: ubuntu-latest
Expand Down Expand Up @@ -37,13 +37,18 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
lfs: true
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: yarn --frozen-lockfile
- run: yarn test
- run: yarn check-unknown-files
- if: failure()
uses: actions/upload-artifact@v2
with:
path: "**/__image_snapshots__/__diff_output__"
- run: yarn checkUnknownFiles
- if: matrix.os == 'ubuntu-latest' && matrix.node == 12
uses: codecov/codecov-action@v1
with:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
/.env.json
/.eslintrc.json
/.nyc_output
/.test.env.json
/coverage
Expand Down
7 changes: 4 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
image:
file: .gitpod.Dockerfile
tasks:
- init: git lfs pull
- init: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >>~/.npmrc
- init: yarn --frozen-lockfile
- before: sudo docker-up
name: Docker Deamon
- init: git lfs pull && echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN"
>>~/.npmrc && yarn --frozen-lockfile
vscode:
extensions:
- [email protected]:8jjyZYuYF6yW6nwsAiulrg==
Expand Down
11 changes: 7 additions & 4 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@
"extends": [
":semanticCommits"
],
"ignorePaths": [
".github/workflows/build.yml"
],
"labels": [
"maintenance"
],
"semanticCommitScope": null,
"lockFileMaintenance": {
"enabled": true
},
"packageRules": [
{
"packagePatterns": [
Expand All @@ -23,7 +28,5 @@
"semanticCommitType": "fix"
}
],
"lockFileMaintenance": {
"enabled": true
}
"semanticCommitScope": null
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ test('works', async () => {
```

<!-- LICENSE/ -->
## Contributing
## Contribute

Are you missing something or want to contribute? Feel free to file an [issue](https://github.com/dword-design/mock-argv/issues) or [pull request](https://github.com/dword-design/mock-argv/pulls)! ⚙️

## Support Me
## Support

Hey, I am Sebastian Landwehr, a freelance web developer, and I love developing web apps and open source packages. If you want to support me so that I can keep packages up to date and build more helpful tools, you can donate here:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"dist"
],
"scripts": {
"check-unknown-files": "base check-unknown-files",
"checkUnknownFiles": "base checkUnknownFiles",
"commit": "base commit",
"dev": "base dev",
"lint": "base lint",
Expand Down
422 changes: 214 additions & 208 deletions yarn.lock

Large diffs are not rendered by default.