@visulima/packem-rollup 1.0.0-alpha.6 → 1.0.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/index.d.mts +4 -12
- package/dist/index.d.ts +4 -12
- package/dist/packem_shared/{types-yL82LLIx.d.mts → types-BKqesFEF.d.mts} +9 -2
- package/dist/packem_shared/{types-yL82LLIx.d.ts → types-BKqesFEF.d.ts} +9 -2
- package/dist/plugins/esbuild/index.d.mts +2 -2
- package/dist/plugins/esbuild/index.d.ts +2 -2
- package/dist/plugins/oxc/index.d.mts +5 -5
- package/dist/plugins/oxc/index.d.ts +5 -5
- package/dist/plugins/oxc/index.mjs +1 -1
- package/dist/plugins/sucrase/index.d.mts +1 -1
- package/dist/plugins/sucrase/index.d.ts +1 -1
- package/dist/plugins/swc/index.d.mts +4 -4
- package/dist/plugins/swc/index.d.ts +4 -4
- package/dist/plugins/swc/index.mjs +1 -1
- package/dist/plugins/typescript/index.d.mts +2 -2
- package/dist/plugins/typescript/index.d.ts +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## @visulima/packem-rollup [1.0.0-alpha.7](https://github.com/visulima/packem/compare/@visulima/packem-rollup@1.0.0-alpha.6...@visulima/packem-rollup@1.0.0-alpha.7) (2025-08-17)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* added tailwindcss oxide loader ([#166](https://github.com/visulima/packem/issues/166)) ([acbbc59](https://github.com/visulima/packem/commit/acbbc59071e771a94d1a0c5435b267e483e3ad73))
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Dependencies
|
|
9
|
+
|
|
10
|
+
* **@visulima/packem-share:** upgraded to 1.0.0-alpha.6
|
|
11
|
+
|
|
1
12
|
## @visulima/packem-rollup [1.0.0-alpha.6](https://github.com/visulima/packem/compare/@visulima/packem-rollup@1.0.0-alpha.5...@visulima/packem-rollup@1.0.0-alpha.6) (2025-08-10)
|
|
2
13
|
|
|
3
14
|
### Features
|
package/dist/index.d.mts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Plugin, RenderedChunk, GetManualChunk, CustomPluginOptions } from 'rollup';
|
|
2
|
-
import { P as PailServerType } from './packem_shared/types-
|
|
3
|
-
export { C as CJSInteropOptions, a as CopyPluginOptions, E as EsmShimCjsSyntaxOptions, I as IsolatedDeclarationsOptions,
|
|
4
|
-
import { FilterPattern } from '@rollup/pluginutils';
|
|
2
|
+
import { P as PailServerType } from './packem_shared/types-BKqesFEF.mjs';
|
|
3
|
+
export { C as CJSInteropOptions, a as CopyPluginOptions, D as DataUriPluginOptions, E as EsmShimCjsSyntaxOptions, I as IsolatedDeclarationsOptions, n as IsolatedDeclarationsResult, o as IsolatedDeclarationsTransformer, J as JSXRemoveAttributesPlugin, L as LicenseOptions, p as PackemRollupOptions, R as RawLoaderOptions, q as RollupPlugins, S as ShebangOptions, h as SourcemapsPluginOptions, T as TransformerFn, t as TransformerName, U as UrlOptions, c as cjsInteropPlugin, b as copyPlugin, d as dataUriPlugin, e as esmShimCjsSyntaxPlugin, g as getShebang, i as isolatedDeclarationsPlugin, j as jsxRemoveAttributes, l as licensePlugin, m as makeExecutable, r as rawPlugin, f as removeShebangPlugin, s as shebangPlugin, k as sourcemapsPlugin, u as urlPlugin } from './packem_shared/types-BKqesFEF.mjs';
|
|
5
4
|
export { b as browserslistToEsbuild } from './packem_shared/browserslist-to-esbuild-DY9HwYtp.mjs';
|
|
6
5
|
import { RollupJsonOptions } from '@rollup/plugin-json';
|
|
7
6
|
import { FileCache } from '@visulima/packem-share/utils';
|
|
7
|
+
import { FilterPattern } from '@rollup/pluginutils';
|
|
8
8
|
import { BuildContextBuildAssetAndChunk, BuildContextBuildEntry } from '@visulima/packem-share/types';
|
|
9
9
|
export { Alias, ResolverObject as AliasResolverObject, ResolvedAlias, RollupAliasOptions, default as alias } from '@rollup/plugin-alias';
|
|
10
10
|
export { RollupCommonJSOptions, default as commonjs } from '@rollup/plugin-commonjs';
|
|
@@ -25,13 +25,6 @@ import 'sucrase';
|
|
|
25
25
|
|
|
26
26
|
declare const chunkSplitter: () => Plugin;
|
|
27
27
|
|
|
28
|
-
type DataUriPluginOptions = {
|
|
29
|
-
exclude?: FilterPattern;
|
|
30
|
-
include?: FilterPattern;
|
|
31
|
-
srcset?: boolean;
|
|
32
|
-
};
|
|
33
|
-
declare const dataUriPlugin: (options?: DataUriPluginOptions) => Plugin;
|
|
34
|
-
|
|
35
28
|
type FixDtsDefaultCjsExportsPluginOptions = {
|
|
36
29
|
matcher?: (info: RenderedChunk) => boolean;
|
|
37
30
|
};
|
|
@@ -60,5 +53,4 @@ declare const getCustomModuleLayer: (moduleId: string) => string | undefined;
|
|
|
60
53
|
|
|
61
54
|
declare const getModuleLayer: (moduleMeta: CustomPluginOptions) => any;
|
|
62
55
|
|
|
63
|
-
export { cachingPlugin, chunkSplitter, createSplitChunks,
|
|
64
|
-
export type { DataUriPluginOptions };
|
|
56
|
+
export { cachingPlugin, chunkSplitter, createSplitChunks, fixDtsDefaultCjsExportsPlugin, fixDynamicImportExtension, getCustomModuleLayer, getModuleLayer, JSONPlugin as jsonPlugin, metafilePlugin, preserveDirectives as preserveDirectivesPlugin, resolveFileUrl as resolveFileUrlPlugin };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Plugin, RenderedChunk, GetManualChunk, CustomPluginOptions } from 'rollup';
|
|
2
|
-
import { P as PailServerType } from './packem_shared/types-
|
|
3
|
-
export { C as CJSInteropOptions, a as CopyPluginOptions, E as EsmShimCjsSyntaxOptions, I as IsolatedDeclarationsOptions,
|
|
4
|
-
import { FilterPattern } from '@rollup/pluginutils';
|
|
2
|
+
import { P as PailServerType } from './packem_shared/types-BKqesFEF.js';
|
|
3
|
+
export { C as CJSInteropOptions, a as CopyPluginOptions, D as DataUriPluginOptions, E as EsmShimCjsSyntaxOptions, I as IsolatedDeclarationsOptions, n as IsolatedDeclarationsResult, o as IsolatedDeclarationsTransformer, J as JSXRemoveAttributesPlugin, L as LicenseOptions, p as PackemRollupOptions, R as RawLoaderOptions, q as RollupPlugins, S as ShebangOptions, h as SourcemapsPluginOptions, T as TransformerFn, t as TransformerName, U as UrlOptions, c as cjsInteropPlugin, b as copyPlugin, d as dataUriPlugin, e as esmShimCjsSyntaxPlugin, g as getShebang, i as isolatedDeclarationsPlugin, j as jsxRemoveAttributes, l as licensePlugin, m as makeExecutable, r as rawPlugin, f as removeShebangPlugin, s as shebangPlugin, k as sourcemapsPlugin, u as urlPlugin } from './packem_shared/types-BKqesFEF.js';
|
|
5
4
|
export { b as browserslistToEsbuild } from './packem_shared/browserslist-to-esbuild-DY9HwYtp.js';
|
|
6
5
|
import { RollupJsonOptions } from '@rollup/plugin-json';
|
|
7
6
|
import { FileCache } from '@visulima/packem-share/utils';
|
|
7
|
+
import { FilterPattern } from '@rollup/pluginutils';
|
|
8
8
|
import { BuildContextBuildAssetAndChunk, BuildContextBuildEntry } from '@visulima/packem-share/types';
|
|
9
9
|
export { Alias, ResolverObject as AliasResolverObject, ResolvedAlias, RollupAliasOptions, default as alias } from '@rollup/plugin-alias';
|
|
10
10
|
export { RollupCommonJSOptions, default as commonjs } from '@rollup/plugin-commonjs';
|
|
@@ -25,13 +25,6 @@ import 'sucrase';
|
|
|
25
25
|
|
|
26
26
|
declare const chunkSplitter: () => Plugin;
|
|
27
27
|
|
|
28
|
-
type DataUriPluginOptions = {
|
|
29
|
-
exclude?: FilterPattern;
|
|
30
|
-
include?: FilterPattern;
|
|
31
|
-
srcset?: boolean;
|
|
32
|
-
};
|
|
33
|
-
declare const dataUriPlugin: (options?: DataUriPluginOptions) => Plugin;
|
|
34
|
-
|
|
35
28
|
type FixDtsDefaultCjsExportsPluginOptions = {
|
|
36
29
|
matcher?: (info: RenderedChunk) => boolean;
|
|
37
30
|
};
|
|
@@ -60,5 +53,4 @@ declare const getCustomModuleLayer: (moduleId: string) => string | undefined;
|
|
|
60
53
|
|
|
61
54
|
declare const getModuleLayer: (moduleMeta: CustomPluginOptions) => any;
|
|
62
55
|
|
|
63
|
-
export { cachingPlugin, chunkSplitter, createSplitChunks,
|
|
64
|
-
export type { DataUriPluginOptions };
|
|
56
|
+
export { cachingPlugin, chunkSplitter, createSplitChunks, fixDtsDefaultCjsExportsPlugin, fixDynamicImportExtension, getCustomModuleLayer, getModuleLayer, JSONPlugin as jsonPlugin, metafilePlugin, preserveDirectives as preserveDirectivesPlugin, resolveFileUrl as resolveFileUrlPlugin };
|
|
@@ -288,6 +288,13 @@ type SingleTargetDesc = {
|
|
|
288
288
|
};
|
|
289
289
|
declare const copyPlugin: (options: CopyPluginOptions, logger: PailServerType) => Plugin$1;
|
|
290
290
|
|
|
291
|
+
type DataUriPluginOptions = {
|
|
292
|
+
exclude?: FilterPattern;
|
|
293
|
+
include?: FilterPattern;
|
|
294
|
+
srcset?: boolean;
|
|
295
|
+
};
|
|
296
|
+
declare const dataUriPlugin: (options?: DataUriPluginOptions) => Plugin$1;
|
|
297
|
+
|
|
291
298
|
interface EsmShimCjsSyntaxOptions {
|
|
292
299
|
exclude?: FilterPattern;
|
|
293
300
|
include?: FilterPattern;
|
|
@@ -4537,5 +4544,5 @@ type TransformerFn = ((config: EsbuildPluginConfig | InternalOXCTransformPluginC
|
|
|
4537
4544
|
};
|
|
4538
4545
|
type TransformerName = "esbuild" | "oxc" | "sucrase" | "swc";
|
|
4539
4546
|
|
|
4540
|
-
export { patchTypescriptTypes as
|
|
4541
|
-
export type {
|
|
4547
|
+
export { patchTypescriptTypes as F, resolveTsconfigPathsPlugin as H, sucrasePlugin as V, copyPlugin as b, cjsInteropPlugin as c, dataUriPlugin as d, esmShimCjsSyntaxPlugin as e, removeShebangPlugin as f, getShebang as g, isolatedDeclarationsPlugin as i, jsxRemoveAttributes as j, sourcemapsPlugin as k, license as l, makeExecutable as m, rawPlugin as r, shebangPlugin as s, urlPlugin as u };
|
|
4548
|
+
export type { TsConfigResult as A, PatchTypesOptions as B, CJSInteropOptions as C, DataUriPluginOptions as D, EsmShimCjsSyntaxOptions as E, TsconfigPathsPluginOptions as G, IsolatedDeclarationsOptions as I, JSXRemoveAttributesPlugin as J, OxcResolveOptions as K, LicenseOptions as L, InternalOXCTransformPluginConfig as M, OXCTransformPluginConfig as N, Optimized as O, PailServerType as P, SucrasePluginConfig as Q, RawLoaderOptions as R, ShebangOptions as S, TransformerFn as T, UrlOptions as U, CopyPluginOptions as a, SourcemapsPluginOptions as h, IsolatedDeclarationsResult as n, IsolatedDeclarationsTransformer as o, PackemRollupOptions as p, RollupPlugins as q, TransformerName as t, EsbuildPluginConfig as v, OptimizeDepsOptions as w, OptimizeDepsResult as x, Options$1 as y, SwcPluginConfig as z };
|
|
@@ -288,6 +288,13 @@ type SingleTargetDesc = {
|
|
|
288
288
|
};
|
|
289
289
|
declare const copyPlugin: (options: CopyPluginOptions, logger: PailServerType) => Plugin$1;
|
|
290
290
|
|
|
291
|
+
type DataUriPluginOptions = {
|
|
292
|
+
exclude?: FilterPattern;
|
|
293
|
+
include?: FilterPattern;
|
|
294
|
+
srcset?: boolean;
|
|
295
|
+
};
|
|
296
|
+
declare const dataUriPlugin: (options?: DataUriPluginOptions) => Plugin$1;
|
|
297
|
+
|
|
291
298
|
interface EsmShimCjsSyntaxOptions {
|
|
292
299
|
exclude?: FilterPattern;
|
|
293
300
|
include?: FilterPattern;
|
|
@@ -4537,5 +4544,5 @@ type TransformerFn = ((config: EsbuildPluginConfig | InternalOXCTransformPluginC
|
|
|
4537
4544
|
};
|
|
4538
4545
|
type TransformerName = "esbuild" | "oxc" | "sucrase" | "swc";
|
|
4539
4546
|
|
|
4540
|
-
export { patchTypescriptTypes as
|
|
4541
|
-
export type {
|
|
4547
|
+
export { patchTypescriptTypes as F, resolveTsconfigPathsPlugin as H, sucrasePlugin as V, copyPlugin as b, cjsInteropPlugin as c, dataUriPlugin as d, esmShimCjsSyntaxPlugin as e, removeShebangPlugin as f, getShebang as g, isolatedDeclarationsPlugin as i, jsxRemoveAttributes as j, sourcemapsPlugin as k, license as l, makeExecutable as m, rawPlugin as r, shebangPlugin as s, urlPlugin as u };
|
|
4548
|
+
export type { TsConfigResult as A, PatchTypesOptions as B, CJSInteropOptions as C, DataUriPluginOptions as D, EsmShimCjsSyntaxOptions as E, TsconfigPathsPluginOptions as G, IsolatedDeclarationsOptions as I, JSXRemoveAttributesPlugin as J, OxcResolveOptions as K, LicenseOptions as L, InternalOXCTransformPluginConfig as M, OXCTransformPluginConfig as N, Optimized as O, PailServerType as P, SucrasePluginConfig as Q, RawLoaderOptions as R, ShebangOptions as S, TransformerFn as T, UrlOptions as U, CopyPluginOptions as a, SourcemapsPluginOptions as h, IsolatedDeclarationsResult as n, IsolatedDeclarationsTransformer as o, PackemRollupOptions as p, RollupPlugins as q, TransformerName as t, EsbuildPluginConfig as v, OptimizeDepsOptions as w, OptimizeDepsResult as x, Options$1 as y, SwcPluginConfig as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { b as browserslistToEsbuild } from '../../packem_shared/browserslist-to-esbuild-DY9HwYtp.mjs';
|
|
2
|
-
import { T as TransformerFn } from '../../packem_shared/types-
|
|
3
|
-
export {
|
|
2
|
+
import { T as TransformerFn } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
3
|
+
export { v as EsbuildPluginConfig, w as OptimizeDepsOptions, x as OptimizeDepsResult, O as Optimized, y as Options } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
4
4
|
import '@rollup/plugin-alias';
|
|
5
5
|
import '@rollup/plugin-commonjs';
|
|
6
6
|
import '@rollup/plugin-json';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { b as browserslistToEsbuild } from '../../packem_shared/browserslist-to-esbuild-DY9HwYtp.js';
|
|
2
|
-
import { T as TransformerFn } from '../../packem_shared/types-
|
|
3
|
-
export {
|
|
2
|
+
import { T as TransformerFn } from '../../packem_shared/types-BKqesFEF.js';
|
|
3
|
+
export { v as EsbuildPluginConfig, w as OptimizeDepsOptions, x as OptimizeDepsResult, O as Optimized, y as Options } from '../../packem_shared/types-BKqesFEF.js';
|
|
4
4
|
import '@rollup/plugin-alias';
|
|
5
5
|
import '@rollup/plugin-commonjs';
|
|
6
6
|
import '@rollup/plugin-json';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { G as OxcResolveOptions, P as PailServerType, T as TransformerFn, k as IsolatedDeclarationsResult } from '../../packem_shared/types-yL82LLIx.mjs';
|
|
2
|
-
export { H as InternalOXCTransformPluginConfig, K as OXCTransformPluginConfig } from '../../packem_shared/types-yL82LLIx.mjs';
|
|
3
|
-
import { Plugin } from 'rollup';
|
|
4
1
|
import { IsolatedDeclarationsOptions } from 'oxc-transform';
|
|
2
|
+
import { n as IsolatedDeclarationsResult, K as OxcResolveOptions, P as PailServerType, T as TransformerFn } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
3
|
+
export { M as InternalOXCTransformPluginConfig, N as OXCTransformPluginConfig } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
4
|
+
import { Plugin } from 'rollup';
|
|
5
5
|
import '@rollup/plugin-alias';
|
|
6
6
|
import '@rollup/plugin-commonjs';
|
|
7
7
|
import '@rollup/plugin-json';
|
|
@@ -19,10 +19,10 @@ import '@visulima/packem-share/types';
|
|
|
19
19
|
import 'oxc-resolver';
|
|
20
20
|
import 'sucrase';
|
|
21
21
|
|
|
22
|
+
declare const isolatedDeclarationsOxcTransformer: (id: string, code: string, sourceMap?: boolean, transformOptions?: Omit<IsolatedDeclarationsOptions, "sourcemap">) => IsolatedDeclarationsResult;
|
|
23
|
+
|
|
22
24
|
declare const oxcResolvePlugin: (options: OxcResolveOptions, rootDirectory: string, logger: PailServerType, tsconfigPath?: string) => Plugin;
|
|
23
25
|
|
|
24
26
|
declare const oxcTransformPlugin: TransformerFn;
|
|
25
27
|
|
|
26
|
-
declare const isolatedDeclarationsOxcTransformer: (id: string, code: string, sourceMap?: boolean, transformOptions?: Omit<IsolatedDeclarationsOptions, "sourcemap">) => IsolatedDeclarationsResult;
|
|
27
|
-
|
|
28
28
|
export { OxcResolveOptions, isolatedDeclarationsOxcTransformer, oxcResolvePlugin, oxcTransformPlugin };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { G as OxcResolveOptions, P as PailServerType, T as TransformerFn, k as IsolatedDeclarationsResult } from '../../packem_shared/types-yL82LLIx.js';
|
|
2
|
-
export { H as InternalOXCTransformPluginConfig, K as OXCTransformPluginConfig } from '../../packem_shared/types-yL82LLIx.js';
|
|
3
|
-
import { Plugin } from 'rollup';
|
|
4
1
|
import { IsolatedDeclarationsOptions } from 'oxc-transform';
|
|
2
|
+
import { n as IsolatedDeclarationsResult, K as OxcResolveOptions, P as PailServerType, T as TransformerFn } from '../../packem_shared/types-BKqesFEF.js';
|
|
3
|
+
export { M as InternalOXCTransformPluginConfig, N as OXCTransformPluginConfig } from '../../packem_shared/types-BKqesFEF.js';
|
|
4
|
+
import { Plugin } from 'rollup';
|
|
5
5
|
import '@rollup/plugin-alias';
|
|
6
6
|
import '@rollup/plugin-commonjs';
|
|
7
7
|
import '@rollup/plugin-json';
|
|
@@ -19,10 +19,10 @@ import '@visulima/packem-share/types';
|
|
|
19
19
|
import 'oxc-resolver';
|
|
20
20
|
import 'sucrase';
|
|
21
21
|
|
|
22
|
+
declare const isolatedDeclarationsOxcTransformer: (id: string, code: string, sourceMap?: boolean, transformOptions?: Omit<IsolatedDeclarationsOptions, "sourcemap">) => IsolatedDeclarationsResult;
|
|
23
|
+
|
|
22
24
|
declare const oxcResolvePlugin: (options: OxcResolveOptions, rootDirectory: string, logger: PailServerType, tsconfigPath?: string) => Plugin;
|
|
23
25
|
|
|
24
26
|
declare const oxcTransformPlugin: TransformerFn;
|
|
25
27
|
|
|
26
|
-
declare const isolatedDeclarationsOxcTransformer: (id: string, code: string, sourceMap?: boolean, transformOptions?: Omit<IsolatedDeclarationsOptions, "sourcemap">) => IsolatedDeclarationsResult;
|
|
27
|
-
|
|
28
28
|
export { OxcResolveOptions, isolatedDeclarationsOxcTransformer, oxcResolvePlugin, oxcTransformPlugin };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{default as a}from"../../packem_shared/
|
|
1
|
+
import{default as a}from"../../packem_shared/isolatedDeclarationsOxcTransformer-WbfE6cGu.mjs";import{default as f}from"../../packem_shared/oxcResolvePlugin-BJpi-eSG.mjs";import{default as s}from"../../packem_shared/oxcTransformPlugin-DfVQouIB.mjs";export{a as isolatedDeclarationsOxcTransformer,f as oxcResolvePlugin,s as oxcTransformPlugin};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@rollup/pluginutils';
|
|
2
2
|
import 'sucrase';
|
|
3
|
-
export {
|
|
3
|
+
export { Q as SucrasePluginConfig, V as sucrasePlugin } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
4
4
|
import '@rollup/plugin-alias';
|
|
5
5
|
import '@rollup/plugin-commonjs';
|
|
6
6
|
import '@rollup/plugin-json';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@rollup/pluginutils';
|
|
2
2
|
import 'sucrase';
|
|
3
|
-
export {
|
|
3
|
+
export { Q as SucrasePluginConfig, V as sucrasePlugin } from '../../packem_shared/types-BKqesFEF.js';
|
|
4
4
|
import '@rollup/plugin-alias';
|
|
5
5
|
import '@rollup/plugin-commonjs';
|
|
6
6
|
import '@rollup/plugin-json';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { n as IsolatedDeclarationsResult, T as TransformerFn } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
2
|
+
export { z as SwcPluginConfig } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
3
3
|
import '@rollup/plugin-alias';
|
|
4
4
|
import '@rollup/plugin-commonjs';
|
|
5
5
|
import '@rollup/plugin-json';
|
|
@@ -19,8 +19,8 @@ import 'oxc-resolver';
|
|
|
19
19
|
import 'oxc-transform';
|
|
20
20
|
import 'sucrase';
|
|
21
21
|
|
|
22
|
-
declare const _default: TransformerFn;
|
|
23
|
-
|
|
24
22
|
declare const isolatedDeclarationsSwcTransformer: (id: string, code: string, sourceMap?: boolean) => Promise<IsolatedDeclarationsResult>;
|
|
25
23
|
|
|
24
|
+
declare const _default: TransformerFn;
|
|
25
|
+
|
|
26
26
|
export { isolatedDeclarationsSwcTransformer, _default as swcPlugin };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { n as IsolatedDeclarationsResult, T as TransformerFn } from '../../packem_shared/types-BKqesFEF.js';
|
|
2
|
+
export { z as SwcPluginConfig } from '../../packem_shared/types-BKqesFEF.js';
|
|
3
3
|
import '@rollup/plugin-alias';
|
|
4
4
|
import '@rollup/plugin-commonjs';
|
|
5
5
|
import '@rollup/plugin-json';
|
|
@@ -19,8 +19,8 @@ import 'oxc-resolver';
|
|
|
19
19
|
import 'oxc-transform';
|
|
20
20
|
import 'sucrase';
|
|
21
21
|
|
|
22
|
-
declare const _default: TransformerFn;
|
|
23
|
-
|
|
24
22
|
declare const isolatedDeclarationsSwcTransformer: (id: string, code: string, sourceMap?: boolean) => Promise<IsolatedDeclarationsResult>;
|
|
25
23
|
|
|
24
|
+
declare const _default: TransformerFn;
|
|
25
|
+
|
|
26
26
|
export { isolatedDeclarationsSwcTransformer, _default as swcPlugin };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{default as e}from"../../packem_shared/
|
|
1
|
+
import{default as e}from"../../packem_shared/isolatedDeclarationsSwcTransformer-Ch2AgtWC.mjs";import{default as s}from"../../packem_shared/swcPlugin-Boip4lWG.mjs";export{e as isolatedDeclarationsSwcTransformer,s as swcPlugin};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TranspileOptions } from 'typescript';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
2
|
+
import { n as IsolatedDeclarationsResult, P as PailServerType, A as TsConfigResult } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
3
|
+
export { B as PatchTypesOptions, G as TsconfigPathsPluginOptions, F as patchTypescriptTypes, F as patchTypescriptTypesPlugin, H as resolveTsconfigPathsPlugin } from '../../packem_shared/types-BKqesFEF.mjs';
|
|
4
4
|
import { Plugin } from 'rollup';
|
|
5
5
|
import '@rollup/plugin-alias';
|
|
6
6
|
import '@rollup/plugin-commonjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TranspileOptions } from 'typescript';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
2
|
+
import { n as IsolatedDeclarationsResult, P as PailServerType, A as TsConfigResult } from '../../packem_shared/types-BKqesFEF.js';
|
|
3
|
+
export { B as PatchTypesOptions, G as TsconfigPathsPluginOptions, F as patchTypescriptTypes, F as patchTypescriptTypesPlugin, H as resolveTsconfigPathsPlugin } from '../../packem_shared/types-BKqesFEF.js';
|
|
4
4
|
import { Plugin } from 'rollup';
|
|
5
5
|
import '@rollup/plugin-alias';
|
|
6
6
|
import '@rollup/plugin-commonjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/packem-rollup",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.7",
|
|
4
4
|
"description": "Rollup plugins for packem",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visulima",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"dist"
|
|
66
66
|
],
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@babel/parser": "7.28.
|
|
68
|
+
"@babel/parser": "7.28.3",
|
|
69
69
|
"@rollup/plugin-alias": "5.1.1",
|
|
70
70
|
"@rollup/plugin-commonjs": "28.0.6",
|
|
71
71
|
"@rollup/plugin-dynamic-import-vars": "2.1.5",
|
|
@@ -78,16 +78,16 @@
|
|
|
78
78
|
"@visulima/find-cache-dir": "1.0.31",
|
|
79
79
|
"@visulima/fs": "3.1.5",
|
|
80
80
|
"@visulima/package": "3.5.8",
|
|
81
|
-
"@visulima/packem-share": "1.0.0-alpha.
|
|
81
|
+
"@visulima/packem-share": "1.0.0-alpha.6",
|
|
82
82
|
"@visulima/path": "1.4.0",
|
|
83
83
|
"@visulima/source-map": "1.0.20",
|
|
84
84
|
"es-module-lexer": "1.7.0",
|
|
85
85
|
"glob-parent": "6.0.2",
|
|
86
86
|
"magic-string": "0.30.17",
|
|
87
87
|
"mlly": "1.7.4",
|
|
88
|
-
"oxc-parser": "0.
|
|
88
|
+
"oxc-parser": "0.82.2",
|
|
89
89
|
"oxc-resolver": "11.6.1",
|
|
90
|
-
"rollup-plugin-dts": "6.2.
|
|
90
|
+
"rollup-plugin-dts": "6.2.3",
|
|
91
91
|
"rollup-plugin-license": "3.6.0",
|
|
92
92
|
"rollup-plugin-polyfill-node": "0.13.0",
|
|
93
93
|
"rollup-plugin-pure": "^0.4.0",
|