@wessberg/rollup-plugin-ts
Advanced tools
Comparing version 1.2.34 to 1.3.0
@@ -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 @@ |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2665456
15930
39