@visulima/packem-rollup 1.0.0-alpha.74 → 1.0.0-alpha.76
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 +10 -0
- package/dist/index.d.ts +4 -4
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## @visulima/packem-rollup [1.0.0-alpha.76](https://github.com/visulima/packem/compare/%40visulima%2Fpackem-rollup%401.0.0-alpha.75...%40visulima%2Fpackem-rollup%401.0.0-alpha.76) (2026-07-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/packem-share:** upgraded to 1.0.0-alpha.51
|
|
7
|
+
* **@visulima/rollup-plugin-dts:** upgraded to 1.0.0-alpha.36
|
|
8
|
+
|
|
9
|
+
## @visulima/packem-rollup [1.0.0-alpha.75](https://github.com/visulima/packem/compare/@visulima/packem-rollup@1.0.0-alpha.74...@visulima/packem-rollup@1.0.0-alpha.75) (2026-06-20)
|
|
10
|
+
|
|
1
11
|
## @visulima/packem-rollup [1.0.0-alpha.74](https://github.com/visulima/packem/compare/@visulima/packem-rollup@1.0.0-alpha.73...@visulima/packem-rollup@1.0.0-alpha.74) (2026-06-16)
|
|
2
12
|
|
|
3
13
|
### Features
|
package/dist/index.d.ts
CHANGED
|
@@ -17,10 +17,10 @@ export { type RollupReplaceOptions, default as replace } from '@rollup/plugin-re
|
|
|
17
17
|
import { RollupWasmOptions } from '@rollup/plugin-wasm';
|
|
18
18
|
export { type RollupWasmOptions, default as wasm } from '@rollup/plugin-wasm';
|
|
19
19
|
import { FilterPattern } from '@rollup/pluginutils';
|
|
20
|
-
import {
|
|
20
|
+
import { InputOptions } from '@babel/core';
|
|
21
21
|
import { ResolvedId, OutputOptions, Plugin, RollupOptions } from 'rollup';
|
|
22
22
|
import { NapiResolveOptions } from 'oxc-resolver';
|
|
23
|
-
import { TransformOptions
|
|
23
|
+
import { TransformOptions, JsxOptions } from 'oxc-transform';
|
|
24
24
|
import '@visulima/package';
|
|
25
25
|
import '@visulima/packem-share/types';
|
|
26
26
|
import { SourceMapOptions } from 'magic-string';
|
|
@@ -41,7 +41,7 @@ export { importTrace, patchErrorWithTrace } from 'rollup-plugin-import-trace';
|
|
|
41
41
|
import '@visulima/packem-share/utils';
|
|
42
42
|
import "./packem_shared/types.d-DrgzeMBs.d-CG9J1x6q.js";
|
|
43
43
|
import '@swc/types';
|
|
44
|
-
interface BabelPluginConfig extends Omit<
|
|
44
|
+
interface BabelPluginConfig extends Omit<InputOptions, "exclude" | "filename" | "include" | "sourceFileName"> {
|
|
45
45
|
exclude?: FilterPattern;
|
|
46
46
|
filename?: string;
|
|
47
47
|
include?: FilterPattern;
|
|
@@ -69,7 +69,7 @@ interface BabelPluginConfig extends Omit<TransformOptions, "exclude" | "filename
|
|
|
69
69
|
parallelThreshold?: number;
|
|
70
70
|
sourceFileName?: string;
|
|
71
71
|
}
|
|
72
|
-
type OXCTransformPluginConfig = Omit<TransformOptions
|
|
72
|
+
type OXCTransformPluginConfig = Omit<TransformOptions, "cwd" | "sourcemap" | "target" | "typescript"> & {
|
|
73
73
|
exclude?: FilterPattern;
|
|
74
74
|
include?: FilterPattern; /** Configure how TSX and JSX are transformed. */
|
|
75
75
|
jsx?: Omit<JsxOptions, "refresh"> | "preserve";
|
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.76",
|
|
4
4
|
"description": "Rollup plugins for packem",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visulima",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"dist"
|
|
82
82
|
],
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@babel/core": "
|
|
84
|
+
"@babel/core": "8.0.1",
|
|
85
85
|
"@rollup/plugin-alias": "6.0.0",
|
|
86
86
|
"@rollup/plugin-commonjs": "29.0.3",
|
|
87
87
|
"@rollup/plugin-dynamic-import-vars": "2.1.5",
|
|
@@ -90,18 +90,18 @@
|
|
|
90
90
|
"@rollup/plugin-replace": "6.0.3",
|
|
91
91
|
"@rollup/plugin-wasm": "6.2.2",
|
|
92
92
|
"@rollup/pluginutils": "5.4.0",
|
|
93
|
-
"@swc/types": "0.1.
|
|
94
|
-
"@visulima/find-cache-dir": "3.0.0
|
|
95
|
-
"@visulima/fs": "5.0.0
|
|
96
|
-
"@visulima/package": "5.0.0
|
|
97
|
-
"@visulima/packem-share": "1.0.0-alpha.
|
|
98
|
-
"@visulima/path": "3.0.0
|
|
99
|
-
"@visulima/rollup-plugin-dts": "1.0.0-alpha.
|
|
93
|
+
"@swc/types": "0.1.27",
|
|
94
|
+
"@visulima/find-cache-dir": "3.0.0",
|
|
95
|
+
"@visulima/fs": "5.0.0",
|
|
96
|
+
"@visulima/package": "5.0.0",
|
|
97
|
+
"@visulima/packem-share": "1.0.0-alpha.51",
|
|
98
|
+
"@visulima/path": "3.0.0",
|
|
99
|
+
"@visulima/rollup-plugin-dts": "1.0.0-alpha.36",
|
|
100
100
|
"clean-css": "^5.3.3",
|
|
101
|
-
"html-minifier-next": "
|
|
101
|
+
"html-minifier-next": "7.2.0",
|
|
102
102
|
"magic-string": "0.30.21",
|
|
103
|
-
"oxc-resolver": "11.
|
|
104
|
-
"oxc-transform": "0.
|
|
103
|
+
"oxc-resolver": "11.24.2",
|
|
104
|
+
"oxc-transform": "0.140.0",
|
|
105
105
|
"rollup-plugin-import-trace": "1.0.1",
|
|
106
106
|
"rollup-plugin-polyfill-node": "0.13.0",
|
|
107
107
|
"rollup-plugin-pure": "^0.4.0",
|