Skip to content

Commit 6b3fe76

Browse files
committed
feat: migrate to obug
1 parent 89f2410 commit 6b3fe76

File tree

4 files changed

+29
-32
lines changed

4 files changed

+29
-32
lines changed

examples/vite-vue3/components.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/* eslint-disable */
22
// @ts-nocheck
3+
// biome-ignore lint: disable
4+
// oxlint-disable
5+
// ------
36
// Generated by unplugin-vue-components
47
// Read more: https://github.com/vuejs/core/pull/3399
5-
// biome-ignore lint: disable
8+
69
export {}
710

811
/* prettier-ignore */

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@
116116
"dependencies": {
117117
"@antfu/install-pkg": "^1.1.0",
118118
"@iconify/utils": "^3.1.0",
119-
"debug": "^4.4.3",
120119
"local-pkg": "^1.1.2",
120+
"obug": "^2.1.1",
121121
"unplugin": "^2.3.11"
122122
},
123123
"devDependencies": {
@@ -128,7 +128,6 @@
128128
"@svgr/core": "^8.1.0",
129129
"@svgr/plugin-jsx": "^8.1.0",
130130
"@svgx/core": "^1.0.1",
131-
"@types/debug": "^4.1.12",
132131
"@types/node": "^25.0.8",
133132
"@vue/compiler-sfc": "^3.5.26",
134133
"bumpp": "^10.4.0",

pnpm-lock.yaml

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

src/core/options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import type { Options, ResolvedOptions } from '../types'
22
import process from 'node:process'
3-
import createDebugger from 'debug'
43
import { getPackageInfo, isPackageExists } from 'local-pkg'
4+
import { createDebug } from 'obug'
55

6-
const debug = createDebugger('unplugin-icons:options')
6+
const debug = createDebug('unplugin-icons:options')
77

88
export async function resolveOptions(options: Options): Promise<ResolvedOptions> {
99
const {

0 commit comments

Comments
 (0)