@rollup/plugin-esm-shim
Advanced tools
Comparing version 0.1.6 to 0.1.7
{ | ||
"name": "@rollup/plugin-esm-shim", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
@@ -1,3 +0,8 @@ | ||
import type { Plugin } from 'rollup'; | ||
import type { Plugin, SourceMapInput } from 'rollup'; | ||
interface Output { | ||
code: string; | ||
map?: SourceMapInput; | ||
} | ||
/** | ||
@@ -9,1 +14,2 @@ * A Rollup plugin to replace cjs syntax for esm output bundles. | ||
export default function commonjsShim(): Plugin; | ||
export function provideCJSSyntax(code: string): Output | null; |
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
13804
284