Skip to content

chore: lock file maintenance #198

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 0 additions & 4 deletions .baserc.json

This file was deleted.

7 changes: 1 addition & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
{
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": 20
}
},
"postCreateCommand": "COREPACK_INTEGRITY_KEYS=0 pnpm install --frozen-lockfile"
"postCreateCommand": "pnpm install --frozen-lockfile"
}
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

17 changes: 8 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ jobs:
- run: corepack enable
- run: git config --global user.email "actions@github.com"
- run: git config --global user.name "GitHub Actions"
- env:
COREPACK_INTEGRITY_KEYS: 0
run: pnpm install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm checkUnknownFiles
- run: pnpm lint
- env:
Expand All @@ -50,17 +48,18 @@ jobs:
check-latest: true
node-version: ${{ matrix.node }}
- run: corepack enable
- env:
COREPACK_INTEGRITY_KEYS: 0
run: pnpm install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm test
- if: failure()
- if: always()
uses: actions/upload-artifact@v4
with:
name: Image Snapshot Diffs
path: "**/__image_snapshots__/__diff_output__"
if-no-files-found: ignore
name: Images from tests
path: |-
**/__image_snapshots__/__diff_output__
test-results/*/**
- if: matrix.os == 'ubuntu-latest' && matrix.node == 20
uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deprecated-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
comment: Auto-closing the issue
issue-number: ${{ steps.create-deprecation-issue.outputs.number }}
- uses: gautamkrishnar/keepalive-workflow@v1
- uses: liskin/gh-workflow-keepalive@v1
name: deprecated-dependencies
on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
approve: false
commitMessage: "fix: write GitHub metadata to package.json [{changes}]"
githubToken: ${{ secrets.GITHUB_TOKEN }}
- uses: gautamkrishnar/keepalive-workflow@v1
- uses: liskin/gh-workflow-keepalive@v1
name: sync-metadata
on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tasks:
git config --global user.name "Sebastian Landwehr"
git config diff.lfs.textconv cat
git lfs pull
COREPACK_INTEGRITY_KEYS=0 pnpm install --frozen-lockfile
pnpm install --frozen-lockfile
vscode:
extensions:
- https://sebastianlandwehr.com/vscode-extensions/karlito40.fix-irregular-whitespace-0.1.1.vsix
Expand Down
46 changes: 23 additions & 23 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@
"editor.tabSize": 2,
"files.autoSave": "off",
"files.exclude": {
".commitlintrc.json": true,
".cz.json": true,
".devcontainer": true,
".editorconfig": true,
".eslintrc.json": true,
".gitattributes": true,
".github": true,
".gitignore": true,
".gitpod.Dockerfile": true,
".gitpod.yml": true,
".husky": true,
".npmrc": true,
".nyc_output": true,
".releaserc.json": true,
".renovaterc.json": true,
".vscode": true,
"CHANGELOG.md": true,
"LICENSE.md": true,
"babel.config.json": true,
"coverage": true,
"dist": true,
"node_modules": true,
"pnpm-lock.yaml": true
".commitlintrc.json": false,
".cz.json": false,
".devcontainer": false,
".editorconfig": false,
".gitattributes": false,
".github": false,
".gitignore": false,
".gitpod.Dockerfile": false,
".gitpod.yml": false,
".husky": false,
".npmrc": false,
".nyc_output": false,
".releaserc.json": false,
".renovaterc.json": false,
".vscode": false,
"CHANGELOG.md": false,
"LICENSE.md": false,
"babel.config.json": false,
"coverage": false,
"dist": false,
"eslint.config.js": false,
"node_modules": false,
"pnpm-lock.yaml": false
},
"workbench.editor.enablePreview": false
}
10 changes: 10 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import config from '@dword-design/eslint-config';
import { defineConfig } from 'eslint/config';

export default defineConfig([
config,
{
files: ['eslint.config.js'],
rules: { 'import/no-extraneous-dependencies': 'off' },
},
]);
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"license": "MIT",
"author": "Sebastian Landwehr <info@sebastianlandwehr.com>",
"type": "module",
"main": "dist/cjs-fallback.cjs",
"exports": "./dist/index.js",
"main": "dist/index.js",
"files": [
"dist"
],
Expand All @@ -43,21 +44,20 @@
"test": "base test"
},
"dependencies": {
"@babel/core": "^7.10.2",
"@dword-design/functions": "^6.0.0",
"babel-plugin-module-resolver": "^5.0.0",
"deepmerge": "^4.3.1",
"jiti": "^1.18.2"
"@babel/core": "^7.27.1",
"@dword-design/functions": "^6.0.2",
"babel-plugin-module-resolver": "^5.0.2",
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@dword-design/base": "^11.0.7",
"@dword-design/base": "^12.0.3",
"@dword-design/tester": "^2.0.19",
"@dword-design/tester-plugin-tmp-dir": "^2.1.26",
"depcheck-package-name": "^3.0.1",
"eslint": "^8.0.0",
"execa": "^9.3.1",
"fs-extra": "^11.1.1",
"output-files": "^2.0.0"
"eslint": "^9.27.0",
"execa": "^9.5.3",
"fs-extra": "^11.3.0",
"output-files": "^2.0.32"
},
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247",
"engines": {
Expand Down
Loading
Loading