Skip to content

Commit

Permalink
fix: added peer deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Uninen committed Nov 19, 2024
1 parent c512cc9 commit ee0c9d3
Show file tree
Hide file tree
Showing 7 changed files with 266 additions and 246 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
branches:
- main
paths:
- '.github/workflows/e2e.yml'
- '.github/workflows/tests.yml'
- 'pnpm-lock.yaml'
- 'src/**/*.ts'
- 'src/**/*.vue'
- 'tests/e2e/**/*.spec.ts'
pull_request:
paths:
- '.github/workflows/e2e.yml'
- '.github/workflows/tests.yml'
- 'pnpm-lock.yaml'
- 'src/**/*.ts'
- 'src/**/*.vue'
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.3.2 (2024-11-19)

- Fix: added `vue` and `vue-router` as peer dependencies.

## 0.3.1 (2024-11-14)

- Fix: fixed async tests.
Expand Down
22 changes: 17 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@slipmatio/toolbelt",
"type": "module",
"version": "0.3.1",
"version": "0.3.2",
"main": "dist/toolbelt.umd.cjs",
"module": "dist/toolbelt.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/toolbelt.js",
"require": "./dist/toolbelt.umd.cjs"
"require": "./dist/toolbelt.cjs"
}
},
"typings": "./dist/index.d.ts",
Expand All @@ -25,9 +25,9 @@
"type-check": "DEBUG=0 vue-tsc --build --force"
},
"devDependencies": {
"@playwright/test": "1.48.2",
"@playwright/test": "1.49.0",
"@tsconfig/node20": "20.1.4",
"@types/node": "22.9.0",
"@types/node": "22.9.1",
"@vitejs/plugin-vue": "5.2.0",
"@vitest/coverage-v8": "2.1.5",
"@vue/test-utils": "2.4.6",
Expand All @@ -37,10 +37,22 @@
"vite": "5.4.11",
"vite-plugin-dts": "4.3.0",
"vitest": "2.1.5",
"vue": "3.5.12",
"vue": "3.5.13",
"vue-router": "4.4.5",
"vue-tsc": "2.1.10"
},
"peerDependencies": {
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"vue-router": {
"optional": true
}
},
"files": [
"dist",
"CHANGES.md",
Expand Down
Loading

0 comments on commit ee0c9d3

Please sign in to comment.