Skip to content

Commit

Permalink
fix: lock file maintenance (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 9, 2023
1 parent 9699a3a commit 2e6f68a
Show file tree
Hide file tree
Showing 8 changed files with 1,981 additions and 2,085 deletions.
7 changes: 7 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-16",
"updateContentCommand": "yarn --frozen-lockfile"
}
1 change: 0 additions & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ RUN git lfs install

# https://www.gitpod.io/docs/languages/javascript
RUN bash -c 'VERSION="16" && source $HOME/.nvm/nvm.sh && nvm install $VERSION && nvm use $VERSION && nvm alias default $VERSION'
RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix

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

Expand Down
12 changes: 9 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
image:
file: .gitpod.Dockerfile
tasks:
- command: eval $(gitpod-env-per-project)
init: git config --global user.name "Sebastian Landwehr" && git lfs pull && yarn
--frozen-lockfile
- before: >-
echo "export
PUPPETEER_CACHE_DIR=/workspace/nuxt-mail/node_modules/.cache/puppeteer" >>
/home/gitpod/.bashrc
gitpod-env-per-project >> /home/gitpod/.bashrc && source /home/gitpod/.bashrc
init: |-
git config --global user.name "Sebastian Landwehr"
git lfs pull && yarn --frozen-lockfile
vscode:
extensions:
- https://sebastianlandwehr.com/vscode-extensions/karlito40.fix-irregular-whitespace-0.1.1.vsix
Expand Down
1 change: 1 addition & 0 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@
]
}
],
"rangeStrategy": "auto",
"semanticCommitScope": null
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
".babelrc.json": true,
".commitlintrc.json": true,
".cz.json": true,
".devcontainer": true,
".editorconfig": true,
".eslintrc.json": true,
".gitattributes": true,
Expand All @@ -16,6 +17,7 @@
".nyc_output": true,
".releaserc.json": true,
".renovaterc.json": true,
".vscode": true,
"CHANGELOG.md": true,
"LICENSE.md": true,
"coverage": true,
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,17 @@
"devDependencies": {
"@dword-design/base": "^9.1.9",
"@dword-design/puppeteer": "^5.0.0",
"@dword-design/tester": "^2.0.0",
"@dword-design/tester-plugin-nuxt-config": "^1.1.3",
"@dword-design/tester-plugin-puppeteer": "^2.1.22",
"@nuxtjs/axios": "^5.13.1",
"axios": "^0.27.2",
"depcheck-package-name": "^2.0.0",
"smtp-tester": "^2.0.1"
"execa": "^7.1.1",
"nuxt": "^3.3.3",
"ora": "^6.3.0",
"output-files": "^2.0.19",
"port-ready": "^0.1.0",
"smtp-tester": "^2.0.1",
"tree-kill-promise": "^3.0.9",
"with-local-tmp-dir": "^5.0.0"
},
"engines": {
"node": ">=14"
Expand Down
Loading

0 comments on commit 2e6f68a

Please sign in to comment.