Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dets

Package Overview
Dependencies
Maintainers
1
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dets - npm Package Compare versions

Comparing version 0.14.0 to 0.14.1

5

CHANGELOG.md
# Changelog for dets
## 0.14.1
- Fixed issue with TypeScript 5.3 not considering externals
- Added full support for triple-slash directives (#14)
## 0.14.0

@@ -4,0 +9,0 @@

@@ -8,2 +8,4 @@ import * as Typescript from 'typescript';

export function fillExportsFromReferences(context: DeclVisitorContext, typingsPath: string): void;
export function fillExportsFromTypes(context: DeclVisitorContext, typingsPath: string): void;

@@ -181,2 +183,3 @@

root: string;
forEachResolvedModule(cb: ResolvedModuleCallback, file: Typescript.SourceFile): void;
}

@@ -192,2 +195,4 @@

export type ResolvedModuleCallback = (value: ResolvedModuleArg, key: string) => void;
export type TypeModelExport = TypeModelDefault | TypeModelVariable | TypeModelInterface | TypeModelClass | TypeModelFunction | TypeModelEnumLiteral | TypeModelAlias;

@@ -197,2 +202,18 @@

export interface ResolvedModuleArg {
resolvedFileName?: string;
resolvedModule: {
resolvedFileName: string | undefined;
originalPath: string | undefined;
extension: string;
isExternalLibraryImport: boolean;
packageId: string | undefined;
resolvedUsingTsExtension: boolean;
};
failedLookupLocations: string | undefined;
affectingLocations: string | undefined;
resolutionDiagnostics: string | undefined;
node10Result: string | undefined;
}
export interface TypeModelDefault extends WithTypeComments {

@@ -199,0 +220,0 @@ readonly kind: "default";

4

package.json
{
"name": "dets",
"version": "0.14.0",
"version": "0.14.1",
"description": "A TypeScript declaration file bundler.",

@@ -70,3 +70,3 @@ "main": "dist/index.js",

"ts-node": "^9.1.1",
"typescript": "5.0.4",
"typescript": "5.3.3",
"vue": "^2.7.14",

@@ -73,0 +73,0 @@ "yargs": "^15.4.1"

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

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

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