Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#396)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jeroen Claassens <support@favware.tech>
  • Loading branch information
renovate[bot] and favna authored Sep 22, 2024
1 parent 5ae29ff commit 4bc8c2f
Show file tree
Hide file tree
Showing 7 changed files with 1,029 additions and 552 deletions.
5 changes: 5 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
{
"matchPackagePatterns": ["@types/node"],
"enabled": false
},
{
"matchPackagePatterns": ["@vitest/browser", "@vitest/coverage-istanbul", "vitest"],
"description": "These packages should be locked until https://github.com/vitest-dev/vitest/issues/5477 is resolved",
"enabled": false
}
]
}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
uses: sapphiredev/.github/.github/workflows/reusable-tests.yml@main
with:
enable-sonar: true
ci: true
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

Expand Down
324 changes: 162 additions & 162 deletions .yarn/releases/yarn-4.4.1.cjs → .yarn/releases/yarn-4.5.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-git-hooks.cjs
spec: 'https://raw.githubusercontent.com/trufflehq/yarn-plugin-git-hooks/main/bundles/%40yarnpkg/plugin-git-hooks.js'

yarnPath: .yarn/releases/yarn-4.4.1.cjs
yarnPath: .yarn/releases/yarn-4.5.0.cjs
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"docs": "typedoc-json-parser",
"test": "yarn playwright install && vitest run",
"test:ci": "yarn playwright install --with-deps && vitest run",
"build": "tsup && yarn build:rename-cjs-index",
"build:rename-cjs-index": "node scripts/rename-cjs-index.mjs",
"clean": "rimraf dist",
Expand All @@ -40,8 +41,8 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@favware/cliff-jumper": "^4.1.0",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.5",
Expand All @@ -50,28 +51,28 @@
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/vue": "^8.1.0",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-vue": "^5.1.3",
"@vitest/browser": "^2.0.5",
"@vitest/coverage-istanbul": "^2.0.5",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/browser": "2.0.5",
"@vitest/coverage-istanbul": "2.0.5",
"cz-conventional-changelog": "^3.3.0",
"esbuild-plugins-node-modules-polyfill": "^1.6.6",
"eslint": "^8.57.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"playwright": "^1.47.0",
"playwright": "^1.47.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"tsup": "^8.3.0",
"typedoc": "^0.25.13",
"typedoc-json-parser": "^10.0.0",
"typedoc-json-parser": "^10.1.5",
"typescript": "~5.4.5",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.0.5",
"vue": "^3.5.3"
"vitest": "2.0.5",
"vue": "^3.5.8"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -127,5 +128,5 @@
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"packageManager": "yarn@4.4.1"
"packageManager": "yarn@4.5.0"
}
9 changes: 3 additions & 6 deletions vitest.workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,18 @@ export default defineWorkspace([
}
},
{
extends: 'vitest.config.ts',
plugins: [vue(), nodePolyfills()],
test: {
includeTaskLocation: true,
setupFiles: ['tests/browser/vitest-setup.ts'],
include: ['tests/browser/**/*.test.ts'],
name: 'browser',
globals: true,
browser: {
enabled: true,
name: 'chromium',
provider: 'playwright'
provider: 'playwright',
headless: true
}
},
esbuild: {
target: 'es2020'
}
}
]);
Loading

0 comments on commit 4bc8c2f

Please sign in to comment.