Skip to content

Commit

Permalink
fix(deps): update dependency @antfu/eslint-config to ^0.39.8 (#258)
Browse files Browse the repository at this point in the history
* fix(deps): update dependency @antfu/eslint-config to ^0.39.8

* fix: lint
  • Loading branch information
renovate[bot] authored Jul 31, 2023
1 parent 11214fb commit ddf7077
Show file tree
Hide file tree
Showing 8 changed files with 474 additions and 784 deletions.
1 change: 1 addition & 0 deletions changelog.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import process from 'node:process'
import type { ChangelogConfig } from 'changelogen'

function getDefaultConfig() {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"@storybook/testing-library": "^0.2.0",
"@storybook/vue3": "^7.1.1",
"@storybook/vue3-vite": "^7.1.1",
"@types/node": "^18.17.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^0.33.0",
"@vue/test-utils": "^2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/primitive/src/primitive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type ComponentProps<
? P
: T extends keyof JSX.IntrinsicElements
? JSX.IntrinsicElements[T]
: {}
: Record<string, never>

type RefElement<T extends abstract new (...args: any) => any> = Omit<
InstanceType<T>,
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-custom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"license": "MIT",
"main": "index.js",
"dependencies": {
"@antfu/eslint-config": "^0.39.6"
"@antfu/eslint-config": "^0.39.8"
}
}
1,249 changes: 467 additions & 782 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions scripts/_utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { promises as fsp } from 'node:fs'
import process from 'node:process'
import { resolve } from 'pathe'
import { execaSync } from 'execa'
import { determineSemverChange, getGitDiff, loadChangelogConfig, parseCommits } from 'changelogen'
Expand Down
1 change: 1 addition & 0 deletions scripts/update-changelog.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { execSync } from 'node:child_process'
import process from 'node:process'
import { $fetch } from 'ofetch'
import { inc } from 'semver'
import { generateMarkDown, loadChangelogConfig } from 'changelogen'
Expand Down
1 change: 1 addition & 0 deletions scripts/update-version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { readFileSync, writeFileSync } from 'node:fs'
import { execSync } from 'node:child_process'
import process from 'node:process'
import { globbySync } from 'globby'

// package for reading and writing files
Expand Down

0 comments on commit ddf7077

Please sign in to comment.