Skip to content

Commit a8006fd

Browse files
fix: update dependency @dword-design/functions to v6 (#129)
1 parent b7cba25 commit a8006fd

File tree

10 files changed

+2778
-2540
lines changed

10 files changed

+2778
-2540
lines changed

.baserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@dword-design/node",
2+
"name": "@dword-design/nuxt-module",
33
"seeAlso": [
44
{ "repository": "nuxt-content-body-html", "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string." },
55
{ "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." },

.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-content-git/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+
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 <[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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ Additional module for @nuxt/content that replaces or adds createdAt and updatedA
5858

5959
```bash
6060
# npm
61-
$ npm install nuxt-content-git
61+
$ npx nuxi module add nuxt-content-git
6262

6363
# Yarn
64-
$ yarn add nuxt-content-git
64+
$ yarn nuxi module add nuxt-content-git
6565
```
6666
<!-- /INSTALL -->
6767

@@ -168,5 +168,5 @@ Thanks a lot for your support! ❤️
168168
169169
## License
170170
171-
[MIT License](https://opensource.org/licenses/MIT) © [Sebastian Landwehr](https://sebastianlandwehr.com)
171+
[MIT License](https://opensource.org/license/mit/) © [Sebastian Landwehr](https://sebastianlandwehr.com)
172172
<!-- /LICENSE -->
File renamed without changes.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@
3737
"test": "base test"
3838
},
3939
"dependencies": {
40-
"@dword-design/functions": "^5.0.20",
40+
"@dword-design/functions": "^6.0.0",
4141
"@nuxt/kit": "^3.5.3",
4242
"simple-git": "^3.15.1"
4343
},
4444
"devDependencies": {
4545
"@dword-design/base": "^11.0.0",
46+
"@dword-design/base-config-nuxt-module": "^1.0.0",
4647
"@dword-design/tester": "^2.0.0",
4748
"@dword-design/tester-plugin-tmp-dir": "^2.1.26",
4849
"@nuxt/content": "^2.6.0",

yarn.lock

Lines changed: 2761 additions & 2530 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)