New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ts-unused-exports

Package Overview
Dependencies
Maintainers
2
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-unused-exports - npm Package Versions

1
45

2.0.5

Diff

pzavolinsky
published 2.0.4 •

pzavolinsky
published 2.0.3 •

pzavolinsky
published 2.0.2 •

pzavolinsky
published 2.0.1 •

pzavolinsky
published 2.0.0 •

pzavolinsky
published 1.0.2 •

pzavolinsky
published 1.0.1 •

Changelog

Source

[11.0.1] - 25 Nov 2024

Changed

  • updated examples and README to match the changes in version 11.0.0
pzavolinsky
published 1.0.0 •

Changelog

Source

[11.0.0] - 25 Nov 2024

Changed

  • BREAKING CHANGE: The default export (API entry point) has been changed to be compatible with esm module (should also work with cjs)
  • BREAKING CHANGE: The results (API) structure has been changed:
    • OLD:
    const result = {
    "filePath1": { /* ... */ },
    "filePath2": { /* ... */ },
    /* ... */
    unusedFiles: { /* ... */ },
    };
    
    • NEW:
    const result = {
    unusedExports: {
        "filePath1": { /* ... */ },
        "filePath2": { /* ... */ },
        /* ... */
    },
    unusedFiles: [ "filePath1", "filePath2", /*"..."*/ ]
    };
    
  • fix: The scope of --ignoreTestFiles has been reduced, to make it less likely to exclude non-test files
  • (internal) built using Node v20.13.1
1
45
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc