Skip to content

Commit 1bfd613

Browse files
fix: lock file maintenance (#174)
1 parent 36e1b6e commit 1bfd613

File tree

9 files changed

+2847
-2750
lines changed

9 files changed

+2847
-2750
lines changed

.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="20" && 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ tasks:
66
PUPPETEER_CACHE_DIR=/workspace/nuxt-route-meta/node_modules/.cache/puppeteer"
77
>> /home/gitpod/.bashrc
88
9-
gitpod-env-per-project >> /home/gitpod/.bashrc && source /home/gitpod/.bashrc
9+
gitpod-env-per-project >> /home/gitpod/.bashrc && source
10+
/home/gitpod/.bashrc
1011
init: |-
1112
git config --global user.name "Sebastian Landwehr"
1213
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+
"actions@github.com"
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
".commitlintrc.json": true,
76
".cz.json": true,
87
".devcontainer": true,
@@ -20,6 +19,7 @@
2019
".vscode": true,
2120
"CHANGELOG.md": true,
2221
"LICENSE.md": true,
22+
"babel.config.json": true,
2323
"coverage": true,
2424
"dist": true,
2525
"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 <info@sebastianlandwehr.com>
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
@@ -193,5 +193,5 @@ Thanks a lot for your support! ❤️
193193

194194
## License
195195

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@
4747
"dependencies": {
4848
"@babel/core": "^7.11.1",
4949
"@babel/traverse": "^7.13.13",
50-
"@dword-design/functions": "^5.0.22",
50+
"@dword-design/functions": "^6.0.0",
5151
"@vue/compiler-sfc": "^3.3.4",
5252
"ast-to-literal": "^0.0.5",
5353
"deepmerge": "^4.3.1",
5454
"depcheck-package-name": "^3.0.1",
5555
"fs-extra": "^11.1.0",
5656
"lodash-es": "^4.17.21",
57-
"ts-ast-to-literal": "^3.0.10"
57+
"ts-ast-to-literal": "^4.0.0"
5858
},
5959
"devDependencies": {
6060
"@babel/plugin-proposal-pipeline-operator": "^7.22.5",
@@ -69,7 +69,7 @@
6969
"typescript": "^5.3.3"
7070
},
7171
"optionalDependencies": {
72-
"typescript": "*"
72+
"typescript": "^5.3.3"
7373
},
7474
"engines": {
7575
"node": ">=18"

yarn.lock

Lines changed: 2832 additions & 2741 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)