Skip to content

Commit 04209e2

Browse files
committed
feat: remove console.log
1 parent 1c8cb13 commit 04209e2

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,6 @@ export function useVSCodePlugin(options?: PluginOptions): PluginOption {
377377
logger.info('extension build start');
378378

379379
const { onSuccess: _onSuccess, silent, ...tsupOptions } = opts.extension || {};
380-
console.log(tsupOptions);
381380

382381
tsdownBuild(
383382
merge(tsupOptions, {
@@ -393,8 +392,6 @@ export function useVSCodePlugin(options?: PluginOptions): PluginOption {
393392
return;
394393
}
395394

396-
console.log(id);
397-
398395
if (code.includes(`${webview.name}(`)) {
399396
return `import ${webview.name} from "${webviewPath}";\n${code}`;
400397
}
@@ -403,8 +400,6 @@ export function useVSCodePlugin(options?: PluginOptions): PluginOption {
403400
},
404401
],
405402
async onSuccess(config, signal) {
406-
// console.log('config', config);
407-
408403
if (_onSuccess) {
409404
if (typeof _onSuccess === 'string') {
410405
await execa(_onSuccess);

0 commit comments

Comments
 (0)