Skip to content

Commit 69b6853

Browse files
fix: update dependency @dword-design/base to v13 (#136)
1 parent e94047b commit 69b6853

20 files changed

+9719
-14940
lines changed

.baserc.json

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
{
22
"name": "@dword-design/nuxt-module",
33
"seeAlso": [
4-
{ "repository": "nuxt-content-body-html", "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string." },
5-
{ "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." },
6-
{ "repository": "nuxt-route-meta", "description": "Adds Nuxt page data to route meta at build time." },
7-
{ "repository": "nuxt-modernizr", "description": "Adds a Modernizr build to your Nuxt.js app." },
8-
{ "repository": "nuxt-mermaid-string", "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string." }
9-
],
10-
"eslintConfig": {
11-
"extends": "@dword-design/eslint-config",
12-
"rules": {
13-
"import/no-unresolved": ["error", { "ignore": ["#imports"] }]
14-
}
15-
}
4+
{ "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string.", "repository": "nuxt-content-body-html" },
5+
{ "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-mail" },
6+
{ "description": "Adds Nuxt page data to route meta at build time.", "repository": "nuxt-route-meta" },
7+
{ "description": "Adds a Modernizr build to your Nuxt.js app.", "repository": "nuxt-modernizr" },
8+
{ "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string.", "repository": "nuxt-mermaid-string" }
9+
]
1610
}

.devcontainer/devcontainer.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
{
2-
"features": {
3-
"ghcr.io/devcontainers/features/node:1": {
4-
"version": 20
5-
}
6-
},
7-
"postCreateCommand": "COREPACK_INTEGRITY_KEYS=0 pnpm install --frozen-lockfile"
2+
"postCreateCommand": "pnpm install --frozen-lockfile"
83
}

.eslintrc.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1+
concurrency:
2+
cancel-in-progress: true
3+
group: ${{ github.workflow }}-${{ github.ref }}
14
jobs:
2-
cancel-existing:
3-
if: "!contains(github.event.head_commit.message, '[skip ci]')"
4-
runs-on: ubuntu-latest
5-
steps:
6-
- env:
7-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8-
uses: rokroskar/[email protected]
95
release:
106
needs: test
117
runs-on: ubuntu-latest
@@ -21,9 +17,7 @@ jobs:
2117
- run: corepack enable
2218
- run: git config --global user.email "[email protected]"
2319
- run: git config --global user.name "GitHub Actions"
24-
- env:
25-
COREPACK_INTEGRITY_KEYS: 0
26-
run: pnpm install --frozen-lockfile
20+
- run: pnpm install --frozen-lockfile
2721
- run: pnpm checkUnknownFiles
2822
- run: pnpm lint
2923
- env:
@@ -38,29 +32,26 @@ jobs:
3832
name: Release
3933
run: pnpm semantic-release
4034
test:
41-
needs: cancel-existing
4235
runs-on: ${{ matrix.os }}
4336
steps:
4437
- uses: actions/checkout@v4
4538
with:
46-
fetch-depth: 0
4739
lfs: true
4840
- uses: actions/setup-node@v4
4941
with:
5042
check-latest: true
5143
node-version: ${{ matrix.node }}
5244
- run: corepack enable
53-
- env:
54-
COREPACK_INTEGRITY_KEYS: 0
55-
run: pnpm install --frozen-lockfile
45+
- run: pnpm install --frozen-lockfile
5646
- env:
5747
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5848
run: pnpm test
59-
- if: failure()
49+
- if: always()
6050
uses: actions/upload-artifact@v4
6151
with:
62-
name: Image Snapshot Diffs
63-
path: "**/__image_snapshots__/__diff_output__"
52+
if-no-files-found: ignore
53+
name: Images from tests
54+
path: test-results/*/**
6455
- if: matrix.os == 'ubuntu-latest' && matrix.node == 20
6556
uses: codecov/codecov-action@v3
6657
with:

.github/workflows/deprecated-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
comment: Auto-closing the issue
2626
issue-number: ${{ steps.create-deprecation-issue.outputs.number }}
27-
- uses: gautamkrishnar/keepalive-workflow@v1
27+
- uses: liskin/gh-workflow-keepalive@v1
2828
name: deprecated-dependencies
2929
on:
3030
schedule:

.github/workflows/sync-metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
approve: false
99
commitMessage: "fix: write GitHub metadata to package.json [{changes}]"
1010
githubToken: ${{ secrets.GITHUB_TOKEN }}
11-
- uses: gautamkrishnar/keepalive-workflow@v1
11+
- uses: liskin/gh-workflow-keepalive@v1
1212
name: sync-metadata
1313
on:
1414
schedule:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
.DS_Store
22
/.env.json
3+
/.nuxt
34
/.nyc_output
45
/.test.env.json
56
/coverage
67
/dist
78
/node_modules
9+
/test-results

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tasks:
1212
git config --global user.name "Sebastian Landwehr"
1313
git config diff.lfs.textconv cat
1414
git lfs pull
15-
COREPACK_INTEGRITY_KEYS=0 pnpm install --frozen-lockfile
15+
pnpm install --frozen-lockfile
1616
vscode:
1717
extensions:
1818
- https://sebastianlandwehr.com/vscode-extensions/karlito40.fix-irregular-whitespace-0.1.1.vsix

.renovaterc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{
2323
"datasourceTemplate": "github-tags",
2424
"fileMatch": [
25-
"\\.js$"
25+
"\\.ts$"
2626
],
2727
"matchStrings": [
2828
"(^|[^\\w])gitHubAction`(?<depName>.*?)@v(?<currentValue>.*?)`"
@@ -33,7 +33,7 @@
3333
"datasourceTemplate": "node-version",
3434
"depNameTemplate": "node",
3535
"fileMatch": [
36-
"\\.js$"
36+
"\\.ts$"
3737
],
3838
"matchStrings": [
3939
"(^|[^\\w])nodejsVersion`(?<currentValue>.*?)`"

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
".cz.json": true,
77
".devcontainer": true,
88
".editorconfig": true,
9-
".eslintrc.json": true,
109
".gitattributes": true,
1110
".github": true,
1211
".gitignore": true,
1312
".gitpod.Dockerfile": true,
1413
".gitpod.yml": true,
1514
".husky": true,
1615
".npmrc": true,
16+
".nuxt": true,
1717
".nyc_output": true,
1818
".releaserc.json": true,
1919
".renovaterc.json": true,
2020
".vscode": true,
2121
"CHANGELOG.md": true,
2222
"LICENSE.md": true,
23-
"babel.config.json": true,
2423
"coverage": true,
2524
"dist": true,
25+
"eslint.config.ts": true,
2626
"node_modules": true,
2727
"pnpm-lock.yaml": true
2828
},

0 commit comments

Comments
 (0)