Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@code-inspector/core

Package Overview
Dependencies
Maintainers
1
Versions
39
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.2.2
to
1.2.3-beta.1
+1
-1
package.json
{
"name": "@code-inspector/core",
"version": "1.2.2",
"version": "1.2.3-beta.1",
"main": "dist/index.js",

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

@@ -16,2 +16,3 @@ import type { Editor } from 'launch-ide';

envDir?: string;
root?: string;
};

@@ -160,3 +161,12 @@ export type IDEOpenMethod = 'reuse' | 'new' | 'auto';

pathType?: PathType;
/**
* @zh 要跳过注入的代码片段:
* - console: 跳过注入 console.error 和 console.warn 的代码片段,nextjs 和 nuxt 项目不建议跳过此项
* - htmlScript: 跳过在 html 中注入 script 标签的代码片段,MPA 项目不建议跳过此项
* @en The code snippets to skip injecting
* - console: Skip injecting the code snippet that injects console.error and console.warn, it is not recommended to skip this item for nextjs and nuxt projects
* - htmlScript: Skip injecting the code snippet that injects script tags in html, it is not recommended to skip this item for MPA projects
*/
skipSnippets?: ('console' | 'htmlScript')[];
};
export {};

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

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