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

@wessberg/rollup-plugin-ts

Package Overview
Dependencies
Maintainers
1
Versions
185
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wessberg/rollup-plugin-ts - npm Package Compare versions

Comparing version 1.2.34 to 1.3.0

6

CHANGELOG.md

@@ -0,1 +1,7 @@

# [1.3.0](https://github.com/wessberg/rollup-plugin-ts/compare/v1.2.34...v1.3.0) (2020-07-31)
### Bug Fixes
- **external:** respect 'external' option provided to Rollup and don't inline typings from modules matched by it ([06f453a](https://github.com/wessberg/rollup-plugin-ts/commit/06f453a382d7b7f86c4d341eea53a5bfffecc8a3))
## [1.2.34](https://github.com/wessberg/rollup-plugin-ts/compare/v1.2.33...v1.2.34) (2020-07-29)

@@ -2,0 +8,0 @@

28

dist/cjs/index.d.ts
import * as TS from "typescript";
import { TransformOptions } from "@babel/core";
import { Plugin } from "rollup";
import { TransformOptions } from "@babel/core";
interface ExtendedDiagnostic extends TS.Diagnostic {

@@ -14,2 +14,14 @@ scope?: string;

type CustomTransformersFunction = (options: CustomTransformerOptions) => TS.CustomTransformers;
// A Record from chunk file names to their stats
type DeclarationStats = Record<string, DeclarationChunkStats>;
interface DeclarationChunkStats {
// An array of the external type dependencies for a declaration chunk
externalTypes: ExternalType[];
}
interface ExternalType {
// The name of the external library that provides the typings. For example, "typescript" or "@types/node"
library: string;
// The version of the referenced external library
version: string;
}
interface FileSystem {

@@ -27,14 +39,2 @@ newLine: string;

}
// A Record from chunk file names to their stats
type DeclarationStats = Record<string, DeclarationChunkStats>;
interface DeclarationChunkStats {
// An array of the external type dependencies for a declaration chunk
externalTypes: ExternalType[];
}
interface ExternalType {
// The name of the external library that provides the typings. For example, "typescript" or "@types/node"
library: string;
// The version of the referenced external library
version: string;
}
type Transpiler = "typescript" | "babel";

@@ -119,3 +119,3 @@ interface DebugTransformerData {

declare function typescriptRollupPlugin(pluginInputOptions?: Partial<TypescriptPluginOptions>): Plugin;
export { CustomTransformerOptions, CustomTransformersFunction, typescriptRollupPlugin as default, TypescriptPluginOptions, BrowserslistConfig, BrowserslistPathConfig, BrowserslistQueryConfig, TypescriptPluginBabelOptions, TypescriptPluginTypescriptOptions };
export { CustomTransformerOptions, CustomTransformersFunction, DeclarationStats, DeclarationChunkStats, ExternalType, TypescriptPluginOptions, BrowserslistConfig, BrowserslistPathConfig, BrowserslistQueryConfig, TypescriptPluginBabelOptions, TypescriptPluginTypescriptOptions, typescriptRollupPlugin as default };
//# sourceMappingURL=index.d.ts.map
import * as TS from "typescript";
import { TransformOptions } from "@babel/core";
import { Plugin } from "rollup";
import { TransformOptions } from "@babel/core";
interface ExtendedDiagnostic extends TS.Diagnostic {

@@ -14,2 +14,14 @@ scope?: string;

type CustomTransformersFunction = (options: CustomTransformerOptions) => TS.CustomTransformers;
// A Record from chunk file names to their stats
type DeclarationStats = Record<string, DeclarationChunkStats>;
interface DeclarationChunkStats {
// An array of the external type dependencies for a declaration chunk
externalTypes: ExternalType[];
}
interface ExternalType {
// The name of the external library that provides the typings. For example, "typescript" or "@types/node"
library: string;
// The version of the referenced external library
version: string;
}
interface FileSystem {

@@ -27,14 +39,2 @@ newLine: string;

}
// A Record from chunk file names to their stats
type DeclarationStats = Record<string, DeclarationChunkStats>;
interface DeclarationChunkStats {
// An array of the external type dependencies for a declaration chunk
externalTypes: ExternalType[];
}
interface ExternalType {
// The name of the external library that provides the typings. For example, "typescript" or "@types/node"
library: string;
// The version of the referenced external library
version: string;
}
type Transpiler = "typescript" | "babel";

@@ -119,3 +119,3 @@ interface DebugTransformerData {

declare function typescriptRollupPlugin(pluginInputOptions?: Partial<TypescriptPluginOptions>): Plugin;
export { CustomTransformerOptions, CustomTransformersFunction, typescriptRollupPlugin as default, TypescriptPluginOptions, BrowserslistConfig, BrowserslistPathConfig, BrowserslistQueryConfig, TypescriptPluginBabelOptions, TypescriptPluginTypescriptOptions };
export { CustomTransformerOptions, CustomTransformersFunction, DeclarationStats, DeclarationChunkStats, ExternalType, TypescriptPluginOptions, BrowserslistConfig, BrowserslistPathConfig, BrowserslistQueryConfig, TypescriptPluginBabelOptions, TypescriptPluginTypescriptOptions, typescriptRollupPlugin as default };
//# sourceMappingURL=index.d.ts.map
{
"name": "@wessberg/rollup-plugin-ts",
"version": "1.2.34",
"version": "1.3.0",
"description": "A Typescript Rollup plugin that bundles declarations and respects Browserslists",

@@ -68,2 +68,3 @@ "scripts": {

"eslint-plugin-jsdoc": "^30.0.3",
"acorn": "^7.3.1",
"fast-glob": "^3.2.4",

@@ -70,0 +71,0 @@ "husky": "^4.2.5",

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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