jupyterlab_vscode_icons_extension 1.0.69 → 1.0.70

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/lib/index.js CHANGED
@@ -570,7 +570,6 @@ const plugin = {
570
570
  };
571
571
  // Function to register file types based on settings
572
572
  const registerFileTypes = () => {
573
- var _a;
574
573
  // Clear existing registrations by re-registering
575
574
  fileTypeConfigs.forEach(config => {
576
575
  // Check if this group is enabled
@@ -631,9 +630,7 @@ const plugin = {
631
630
  });
632
631
  // Register CLAUDE.md with Claude icon (always register, not conditional on settings)
633
632
  const claudeIcon = createLabIcon('file-type-claude');
634
- console.log('[VSCode Icons] CLAUDE.md icon created:', !!claudeIcon);
635
633
  if (claudeIcon) {
636
- console.log('[VSCode Icons] CLAUDE.md icon svgstr length:', ((_a = claudeIcon.svgstr) === null || _a === void 0 ? void 0 : _a.length) || 0);
637
634
  docRegistry.addFileType({
638
635
  name: 'vscode-claude-md',
639
636
  displayName: 'Claude Configuration',
@@ -642,7 +639,6 @@ const plugin = {
642
639
  contentType: 'file',
643
640
  icon: claudeIcon
644
641
  });
645
- console.log('[VSCode Icons] CLAUDE.md file type registered with pattern: ^CLAUDE\\.md$');
646
642
  }
647
643
  else {
648
644
  console.error('[VSCode Icons] Failed to create CLAUDE.md icon');
@@ -664,7 +660,6 @@ const plugin = {
664
660
  contentType: 'file',
665
661
  icon: readmeIcon
666
662
  });
667
- console.log('[VSCode Icons] README.md file type registered with pattern: ^README\\.md$');
668
663
  };
669
664
  // Debounce timer for settings change alert
670
665
  let settingsChangeTimeout = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_vscode_icons_extension",
3
- "version": "1.0.69",
3
+ "version": "1.0.70",
4
4
  "description": "Jupyterlab extension with a shameless rip-off of the vscode-icons into our beloved environment",
5
5
  "keywords": [
6
6
  "jupyter",
package/src/index.ts CHANGED
@@ -700,9 +700,7 @@ const plugin: JupyterFrontEndPlugin<void> = {
700
700
 
701
701
  // Register CLAUDE.md with Claude icon (always register, not conditional on settings)
702
702
  const claudeIcon = createLabIcon('file-type-claude');
703
- console.log('[VSCode Icons] CLAUDE.md icon created:', !!claudeIcon);
704
703
  if (claudeIcon) {
705
- console.log('[VSCode Icons] CLAUDE.md icon svgstr length:', claudeIcon.svgstr?.length || 0);
706
704
  docRegistry.addFileType({
707
705
  name: 'vscode-claude-md',
708
706
  displayName: 'Claude Configuration',
@@ -711,7 +709,6 @@ const plugin: JupyterFrontEndPlugin<void> = {
711
709
  contentType: 'file',
712
710
  icon: claudeIcon
713
711
  });
714
- console.log('[VSCode Icons] CLAUDE.md file type registered with pattern: ^CLAUDE\\.md$');
715
712
  } else {
716
713
  console.error('[VSCode Icons] Failed to create CLAUDE.md icon');
717
714
  }
@@ -735,7 +732,6 @@ const plugin: JupyterFrontEndPlugin<void> = {
735
732
  contentType: 'file',
736
733
  icon: readmeIcon
737
734
  });
738
- console.log('[VSCode Icons] README.md file type registered with pattern: ^README\\.md$');
739
735
  };
740
736
 
741
737
  // Debounce timer for settings change alert