Skip to content

Commit

Permalink
fix: lock file maintenance (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 8, 2024
1 parent a165835 commit 2178e17
Show file tree
Hide file tree
Showing 10 changed files with 2,692 additions and 2,441 deletions.
2 changes: 1 addition & 1 deletion .baserc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dword-design/node",
"name": "@dword-design/nuxt-module",
"seeAlso": [
{ "repository": "nuxt-mail", "description": "Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails." },
{ "repository": "nuxt-route-meta", "description": "Adds Nuxt page data to route meta at build time." },
Expand Down
6 changes: 4 additions & 2 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# Need to add :latest, otherwise old versions (e.g. of node) are installed
FROM gitpod/workspace-full:latest
FROM gitpod/workspace-full-vnc:latest

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

# https://www.gitpod.io/docs/languages/javascript
RUN bash -c 'VERSION="20" && source $HOME/.nvm/nvm.sh && nvm install $VERSION && nvm use $VERSION && nvm alias default $VERSION'
# https://github.com/gitpod-io/gitpod/issues/945
RUN bash -c 'source $HOME/.nvm/nvm.sh && nvm install 20'
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
3 changes: 2 additions & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ tasks:
PUPPETEER_CACHE_DIR=/workspace/nuxt-modernizr/node_modules/.cache/puppeteer"
>> /home/gitpod/.bashrc
gitpod-env-per-project >> /home/gitpod/.bashrc && source /home/gitpod/.bashrc
gitpod-env-per-project >> /home/gitpod/.bashrc && source
/home/gitpod/.bashrc
init: |-
git config --global user.name "Sebastian Landwehr"
git config diff.lfs.textconv cat
Expand Down
3 changes: 3 additions & 0 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
":semanticCommits",
":semanticPrefixFix"
],
"gitIgnoredAuthors": [
"actions@github.com"
],
"github-actions": {
"enabled": false
},
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"editor.tabSize": 2,
"files.autoSave": "off",
"files.exclude": {
".babelrc.json": true,
".commitlintrc.json": true,
".cz.json": true,
".devcontainer": true,
Expand All @@ -20,6 +19,7 @@
".vscode": true,
"CHANGELOG.md": true,
"LICENSE.md": true,
"babel.config.json": true,
"coverage": true,
"dist": true,
"node_modules": true,
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Copyright &copy; Sebastian Landwehr <info@sebastianlandwehr.com>

and licensed under:

[MIT License](https://opensource.org/licenses/MIT)
[MIT License](https://opensource.org/license/mit/)

## MIT License

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ Adds a Modernizr build to your Nuxt.js app.

```bash
# npm
$ npm install nuxt-modernizr
$ npx nuxi module add nuxt-modernizr

# Yarn
$ yarn add nuxt-modernizr
$ yarn nuxi module add nuxt-modernizr
```
<!-- /INSTALL -->

Expand Down Expand Up @@ -165,5 +165,5 @@ Thanks a lot for your support! ❤️

## License

[MIT License](https://opensource.org/licenses/MIT) © [Sebastian Landwehr](https://sebastianlandwehr.com)
[MIT License](https://opensource.org/license/mit/) © [Sebastian Landwehr](https://sebastianlandwehr.com)
<!-- /LICENSE -->
File renamed without changes.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
},
"devDependencies": {
"@dword-design/base": "^11.0.4",
"@dword-design/functions": "^5.0.27",
"@dword-design/base-config-nuxt-module": "^1.0.0",
"@dword-design/functions": "^6.0.0",
"@dword-design/puppeteer": "^7.0.0",
"@dword-design/tester": "^2.0.19",
"@dword-design/tester-plugin-puppeteer": "^3.0.0",
Expand Down
5,106 changes: 2,675 additions & 2,431 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 2178e17

Please sign in to comment.