Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update dependency @dword-design/functions to v6 #129

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-content-body-html", "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string." },
{ "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." },
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-content-git/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": [
"[email protected]"
],
"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 <[email protected]>

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 @@ Additional module for @nuxt/content that replaces or adds createdAt and updatedA

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

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

Expand Down Expand Up @@ -168,5 +168,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 @@ -37,12 +37,13 @@
"test": "base test"
},
"dependencies": {
"@dword-design/functions": "^5.0.20",
"@dword-design/functions": "^6.0.0",
"@nuxt/kit": "^3.5.3",
"simple-git": "^3.15.1"
},
"devDependencies": {
"@dword-design/base": "^11.0.0",
"@dword-design/base-config-nuxt-module": "^1.0.0",
"@dword-design/tester": "^2.0.0",
"@dword-design/tester-plugin-tmp-dir": "^2.1.26",
"@nuxt/content": "^2.6.0",
Expand Down
5,291 changes: 2,761 additions & 2,530 deletions yarn.lock

Large diffs are not rendered by default.

Loading