Skip to content

Commit eb550b0

Browse files
fix: lock file maintenance (#11)
1 parent 5fb1436 commit eb550b0

File tree

7 files changed

+213
-253
lines changed

7 files changed

+213
-253
lines changed

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@dword-design/eslint-config"
3+
}

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
steps:
66
- env:
77
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8-
uses: rokroskar/[email protected].0
8+
uses: rokroskar/[email protected].2
99
release:
1010
needs: test
1111
runs-on: ubuntu-latest
@@ -37,13 +37,18 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v2
3939
with:
40+
fetch-depth: 0
4041
lfs: true
4142
- uses: actions/setup-node@v2
4243
with:
4344
node-version: ${{ matrix.node }}
4445
- run: yarn --frozen-lockfile
4546
- run: yarn test
46-
- run: yarn check-unknown-files
47+
- if: failure()
48+
uses: actions/upload-artifact@v2
49+
with:
50+
path: "**/__image_snapshots__/__diff_output__"
51+
- run: yarn checkUnknownFiles
4752
- if: matrix.os == 'ubuntu-latest' && matrix.node == 12
4853
uses: codecov/codecov-action@v1
4954
with:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.DS_Store
22
/.env.json
3-
/.eslintrc.json
43
/.nyc_output
54
/.test.env.json
65
/coverage

.gitpod.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
image:
22
file: .gitpod.Dockerfile
33
tasks:
4-
- init: git lfs pull
5-
- init: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >>~/.npmrc
6-
- init: yarn --frozen-lockfile
4+
- before: sudo docker-up
5+
name: Docker Deamon
6+
- init: git lfs pull && echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN"
7+
>>~/.npmrc && yarn --frozen-lockfile
78
vscode:
89
extensions:
910
- [email protected]:8jjyZYuYF6yW6nwsAiulrg==

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ $ yarn add @dword-design/eslint-plugin-import-alias
6262
<!-- /INSTALL -->
6363

6464
<!-- LICENSE/ -->
65-
## Contributing
65+
## Contribute
6666

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

69-
## Support Me
69+
## Support
7070

7171
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:
7272

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dist"
1212
],
1313
"scripts": {
14-
"check-unknown-files": "base check-unknown-files",
14+
"checkUnknownFiles": "base checkUnknownFiles",
1515
"commit": "base commit",
1616
"dev": "base dev",
1717
"lint": "base lint",

yarn.lock

Lines changed: 196 additions & 244 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)