Skip to content
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

chore(deps): update all non-major dependencies #15

Open
wants to merge 1 commit into
base: main
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
uses: pnpm/action-setup@v2.4.0

- name: Set node
uses: actions/setup-node@v3
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2.2.2
uses: pnpm/action-setup@v2.4.0

- name: Setup Node
uses: actions/setup-node@v3
Expand All @@ -64,7 +64,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
uses: pnpm/action-setup@v2.4.0

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand Down
42 changes: 21 additions & 21 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "@ow3/deep-unref-vue",
"version": "0.1.3",
"packageManager": "pnpm@7.3.0",
"packageManager": "pnpm@7.33.7",
"description": "Easily remove all refs from an object using the `deepUnref`-composable.",
"keywords": [
"vue",
Expand All @@ -9,12 +9,12 @@
"unref",
"deep"
],
"homepage": "https://github.com/openweblabs/deep-unref-vue#readme",

Check failure on line 12 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'homepage' should be before 'keywords'
"bugs": {
"url": "https://github.com/openweblabs/deep-unref-vue/issues"
},
"license": "MIT",

Check failure on line 16 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'license' should be before 'bugs'
"author": "Chris Breuer <chris@ow3.org>",

Check failure on line 17 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'author' should be before 'license'
"repository": {
"type": "git",
"url": "git+https://github.com/openweblabs/deep-unref-vue.git"
Expand All @@ -22,11 +22,11 @@
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {

Check failure on line 25 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'exports' should be before 'types'
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",

Check failure on line 28 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'import' should be before 'require'
"types": "./dist/index.d.ts"

Check failure on line 29 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'types' should be before 'import'
}
},
"typesVersions": {
Expand All @@ -40,7 +40,7 @@
"files": [
"dist"
],
"sideEffects": false,

Check failure on line 43 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'sideEffects' should be before 'files'
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
Expand All @@ -54,35 +54,35 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^9.2.0",
"vue": "^3.2.37"
"@vueuse/core": "^9.13.0",
"vue": "^3.4.27"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/cz-commitlint": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@types/node": "^17.0.32",
"@antfu/eslint-config": "^0.43.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/cz-commitlint": "^17.8.1",
"@commitlint/types": "^17.8.1",
"@types/node": "^17.0.45",
"bumpp": "^7.2.0",
"commitizen": "^4.2.4",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.18.0",
"esno": "^0.16.3",
"inquirer": "^8.2.4",
"lint-staged": "^13.0.3",
"pnpm": "^7.3.0",
"simple-git-hooks": "^2.8.0",
"eslint": "^8.57.0",
"esno": "^0.17.0",
"inquirer": "^8.2.6",
"lint-staged": "^13.3.0",
"pnpm": "^7.33.7",
"simple-git-hooks": "^2.11.1",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.4",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.16.0"
"typescript": "^4.9.5",
"unbuild": "^0.9.4",
"vite": "^2.9.18",
"vitest": "^0.34.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix",
"package.json": "sort-package-json"
},
"simple-git-hooks": {

Check failure on line 85 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'simple-git-hooks' should be before 'lint-staged'
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --config ./commitlint.config.ts --edit $1"
},
Expand All @@ -91,8 +91,8 @@
"path": "@commitlint/cz-commitlint"
}
},
"engines": {

Check failure on line 94 in package.json

View workflow job for this annotation

GitHub Actions / lint

Expected object keys to be in specified order. 'engines' should be before 'simple-git-hooks'
"node": ">=v16.15.1",
"pnpm": ">=7.3.0"
"node": ">=16.20.2",
"pnpm": ">=7.33.7"
}
}