@vxrn/debug 1.1.329 → 1.1.330
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/index.tsx +1 -1
- package/types/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vxrn/debug",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.330",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"debug": "^4.3.7"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@tamagui/build": "^1.116.
|
|
35
|
+
"@tamagui/build": "^1.116.14",
|
|
36
36
|
"@types/debug": "^4"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
package/src/index.tsx
CHANGED
|
@@ -9,7 +9,7 @@ interface DebuggerOptions {
|
|
|
9
9
|
const DEBUG = process.env.DEBUG
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* This is like `createDebugger()` in the Vite source code ([see](https://github.com/vitejs/vite/blob/v6.0.0-beta.
|
|
12
|
+
* This is like `createDebugger()` in the Vite source code ([see](https://github.com/vitejs/vite/blob/v6.0.0-beta.2/packages/vite/src/node/utils.ts#L163)),
|
|
13
13
|
* but some of its features are not supported yet to keeps things simple.
|
|
14
14
|
*/
|
|
15
15
|
export function createDebugger(
|
package/types/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ interface DebuggerOptions {
|
|
|
6
6
|
onlyWhenFocused?: boolean | string;
|
|
7
7
|
}
|
|
8
8
|
/**
|
|
9
|
-
* This is like `createDebugger()` in the Vite source code ([see](https://github.com/vitejs/vite/blob/v6.0.0-beta.
|
|
9
|
+
* This is like `createDebugger()` in the Vite source code ([see](https://github.com/vitejs/vite/blob/v6.0.0-beta.2/packages/vite/src/node/utils.ts#L163)),
|
|
10
10
|
* but some of its features are not supported yet to keeps things simple.
|
|
11
11
|
*/
|
|
12
12
|
export declare function createDebugger(namespacePartial: string, options?: DebuggerOptions): {
|