Skip to content

Commit ba8b8d5

Browse files
chore(deps): update dependency @so1ve/eslint-config to ^0.106.0 (#30)
* chore(deps): update dependency @so1ve/eslint-config to ^0.106.0 * [autofix.ci] apply automated fixes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 772bb5e commit ba8b8d5

File tree

5 files changed

+112
-43
lines changed

5 files changed

+112
-43
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"devDependencies": {
9292
"@antfu/ni": "^0.21.3",
9393
"@babel/types": "^7.21.4",
94-
"@so1ve/eslint-config": "^0.105.0",
94+
"@so1ve/eslint-config": "^0.106.0",
9595
"@types/fs-extra": "^9.0.13",
9696
"@types/node": "^18.15.11",
9797
"bumpp": "^9.1.0",

pnpm-lock.yaml

Lines changed: 108 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/handleHotUpdate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import type { HmrContext, ModuleNode } from "vite";
22
import type { SFCBlock, SFCDescriptor } from "vue/compiler-sfc";
33

4-
import type { ResolvedOptions } from ".";
54
import { getResolvedScript, setResolvedScript } from "./script";
65
import {
76
createDescriptor,
87
getDescriptor,
98
setPrevDescriptor,
109
} from "./utils/descriptorCache";
10+
import type { ResolvedOptions } from ".";
1111

1212
const directRequestRE = /(\?|&)direct\b/;
1313

src/core/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import type { RawSourceMap } from "source-map";
55
import { transformWithEsbuild } from "vite";
66
import type { SFCBlock, SFCDescriptor } from "vue/compiler-sfc";
77

8-
import type { Context, ResolvedOptions } from ".";
98
import { isOnlyTemplateChanged } from "./handleHotUpdate";
109
import { resolveScript } from "./script";
1110
import { transformTemplateInMain } from "./template";
@@ -17,6 +16,7 @@ import {
1716
} from "./utils/descriptorCache";
1817
import { createError } from "./utils/error";
1918
import { HMR_RUNTIME_ID } from "./utils/hmrRuntime";
19+
import type { Context, ResolvedOptions } from ".";
2020

2121
export async function transformMain(
2222
code: string,

src/core/template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import type {
99
SFCTemplateCompileOptions,
1010
} from "vue/compiler-sfc";
1111

12-
import type { ResolvedOptions } from ".";
1312
import { getResolvedScript } from "./script";
1413
import { createError } from "./utils/error";
1514
import { HMR_RUNTIME_ID } from "./utils/hmrRuntime";
15+
import type { ResolvedOptions } from ".";
1616

1717
export async function transformTemplateAsModule(
1818
code: string,

0 commit comments

Comments
 (0)