Skip to content

Commit 5d86db0

Browse files
fix: lock file maintenance (#196)
1 parent ce7cfdb commit 5d86db0

17 files changed

+3245
-3275
lines changed

.baserc.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@
33
"testInContainer": true,
44
"seeAlso": [
55
{ "repository": "nuxt-mermaid-string", "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string." }
6-
]
7-
}
6+
],
7+
"depcheckConfig": {
8+
"ignoreMatches": [
9+
"playwright-chromium"
10+
]
11+
}
12+
}

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"features": {
33
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
44
},
5-
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18",
5+
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-20",
66
"updateContentCommand": "yarn --frozen-lockfile"
77
}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
github.event.pull_request.head.ref || '' }}
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 20
1818
- run: git config --global user.email "[email protected]"
1919
- run: git config --global user.name "GitHub Actions"
2020
- run: yarn --frozen-lockfile

.gitpod.Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Need to add :latest, otherwise old versions (e.g. of node) are installed
2-
FROM gitpod/workspace-full:latest
2+
FROM gitpod/workspace-full-vnc:latest
33

44
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
55
RUN sudo apt-get install git-lfs
66
RUN git lfs install
77

88
# https://www.gitpod.io/docs/languages/javascript
9-
RUN bash -c 'VERSION="18" && source $HOME/.nvm/nvm.sh && nvm install $VERSION && nvm use $VERSION && nvm alias default $VERSION'
9+
# https://github.com/gitpod-io/gitpod/issues/945
10+
RUN bash -c 'source $HOME/.nvm/nvm.sh && nvm install 20'
11+
RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix
1012

1113
RUN echo "\nexport PATH=$(yarn global bin):\$PATH" >> /home/gitpod/.bashrc
1214

.gitpod.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ tasks:
66
PUPPETEER_CACHE_DIR=/workspace/vue-mermaid-string/node_modules/.cache/puppeteer"
77
>> /home/gitpod/.bashrc
88
9-
gitpod-env-per-project >> /home/gitpod/.bashrc && source /home/gitpod/.bashrc
9+
echo "export PLAYWRIGHT_BROWSERS_PATH=0" >> /home/gitpod/.bashrc
10+
11+
gitpod-env-per-project >> /home/gitpod/.bashrc && source
12+
/home/gitpod/.bashrc
1013
init: |-
1114
git config --global user.name "Sebastian Landwehr"
1215
git config diff.lfs.textconv cat

.renovaterc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
":semanticCommits",
44
":semanticPrefixFix"
55
],
6+
"gitIgnoredAuthors": [
7+
8+
],
69
"github-actions": {
710
"enabled": false
811
},

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"editor.tabSize": 2,
33
"files.autoSave": "off",
44
"files.exclude": {
5-
".babelrc.json": true,
65
".browserslistrc": true,
76
".commitlintrc.json": true,
87
".cz.json": true,
@@ -21,6 +20,7 @@
2120
".vscode": true,
2221
"CHANGELOG.md": true,
2322
"LICENSE.md": true,
23+
"babel.config.json": true,
2424
"coverage": true,
2525
"dist": true,
2626
"node_modules": true,

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright &copy; Sebastian Landwehr <[email protected]>
66

77
and licensed under:
88

9-
[MIT License](https://opensource.org/licenses/MIT)
9+
[MIT License](https://opensource.org/license/mit/)
1010

1111
## MIT License
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,5 +265,5 @@ Thanks a lot for your support! ❤️
265265

266266
## License
267267

268-
[MIT License](https://opensource.org/licenses/MIT) © [Sebastian Landwehr](https://sebastianlandwehr.com)
268+
[MIT License](https://opensource.org/license/mit/) © [Sebastian Landwehr](https://sebastianlandwehr.com)
269269
<!-- /LICENSE -->
File renamed without changes.

0 commit comments

Comments
 (0)