🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@code-inspector/core

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@code-inspector/core - npm Package Compare versions

Comparing version
1.6.2
to
1.6.3
+12
types/server/transform/vue-node-transform.d.ts
import type { NodeTransform } from '@vue/compiler-dom';
import type { EscapeTags, PathType } from '../../shared';
type VueInspectorNodeTransformOptions = {
escapeTags?: EscapeTags;
pathType?: PathType;
mappings?: Record<string, string> | Array<{
find: string | RegExp;
replacement: string;
}>;
};
export declare function createVueInspectorNodeTransform(options?: VueInspectorNodeTransformOptions): NodeTransform;
export {};
+1
-1
{
"name": "@code-inspector/core",
"version": "1.6.2",
"version": "1.6.3",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "module": "./dist/index.mjs",

@@ -1,3 +0,3 @@

export { transformCode } from './transform';
export { createVueInspectorNodeTransform, transformCode, } from './transform';
export * from './use-client';
export * from './server';

@@ -0,1 +1,2 @@

export { createVueInspectorNodeTransform } from './vue-node-transform';
import { EscapeTags, PathType } from '../../shared';

@@ -12,2 +13,1 @@ type FileType = 'vue' | 'jsx' | 'svelte' | 'astro' | 'mdx' | unknown;

export declare function transformCode(params: TransformCodeParams): Promise<string>;
export {};

@@ -8,1 +8,2 @@ export declare const LineName = "data-insp-row";

export declare const AstroToolbarFile = "\0astro:dev-toolbar";
export declare const CodeInspectorEscapeTags: string[];

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display