@visulima/packem 2.0.0-alpha.92 → 2.0.0-alpha.94
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 +17 -0
- package/LICENSE.md +1211 -186
- package/dist/babel-runtime/packem_shared/transform-code-DtqOY-lW.js +1 -0
- package/dist/babel-runtime/plugins/babel/worker.js +1 -1
- package/dist/builder/typedoc/index.d.ts +1 -1
- package/dist/builder/typedoc/index.js +2 -2
- package/dist/cli/index.js +17 -17
- package/dist/config/index.d.ts +42 -42
- package/dist/config/preset/preact.d.ts +8 -8
- package/dist/config/preset/react.d.ts +43 -43
- package/dist/config/preset/solid.d.ts +73 -73
- package/dist/config/preset/svelte.d.ts +46 -46
- package/dist/config/preset/vue.d.ts +33 -33
- package/dist/index.d.ts +35 -35
- package/dist/index.js +61 -39
- package/dist/packem_shared/create-or-update-key-storage-BFOAEuWX.js +26 -0
- package/dist/packem_shared/default-BSbw_3ev.js +1 -0
- package/dist/packem_shared/index-D_5MmI7f.js +301 -0
- package/dist/packem_shared/oxcTransformPlugin-Dwvbw2jE-CI_T_eTp.js +168 -0
- package/dist/packem_shared/{types.d-BkLP91NJ.d.ts → types.d-CA4tXIce.d.ts} +178 -178
- package/dist/packem_shared/utils-DqCpIxDx.js +1 -0
- package/dist/rollup/plugins/oxc/oxc-transformer.js +1 -1
- package/package.json +16 -16
- package/dist/babel-runtime/packem_shared/transform-code-KNtowoK1.js +0 -1
- package/dist/packem_shared/create-or-update-key-storage-DHOKZmnD.js +0 -28
- package/dist/packem_shared/default-mHB0zin0.js +0 -1
- package/dist/packem_shared/index-BXEUcumB.js +0 -249
- package/dist/packem_shared/oxcTransformPlugin-Dwvbw2jE-BsmmBg7q.js +0 -177
- package/dist/packem_shared/utils-Bsoe7qJG.js +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BabelPluginConfig } from '@visulima/packem-plugins/babel';
|
|
2
|
-
import { B as BuildConfig } from "../../packem_shared/types.d-
|
|
2
|
+
import { B as BuildConfig } from "../../packem_shared/types.d-CA4tXIce.js";
|
|
3
3
|
import '@arethetypeswrong/core';
|
|
4
4
|
import '@visulima/packem-plugins';
|
|
5
5
|
import '@visulima/packem-plugins/oxc';
|
|
@@ -14,101 +14,101 @@ import 'rollup';
|
|
|
14
14
|
import 'typedoc';
|
|
15
15
|
interface SolidPresetOptions {
|
|
16
16
|
/**
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
* Pass any additional babel transform options. They will be merged with
|
|
18
|
+
* the transformations required by Solid.
|
|
19
|
+
*/
|
|
20
20
|
babel?: BabelPluginConfig | ((source: string, id: string) => BabelPluginConfig | Promise<BabelPluginConfig>);
|
|
21
21
|
/**
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
* Custom Babel plugins to add
|
|
23
|
+
*/
|
|
24
24
|
plugins?: BabelPluginConfig["plugins"];
|
|
25
25
|
/**
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
* Custom Babel presets to add
|
|
27
|
+
*/
|
|
28
28
|
presets?: BabelPluginConfig["presets"];
|
|
29
29
|
/**
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
* SolidJS-specific options for babel-preset-solid
|
|
31
|
+
*/
|
|
32
32
|
solidOptions?: {
|
|
33
33
|
/**
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
34
|
+
* Array of Component exports from module, that aren't included by default with the library.
|
|
35
|
+
* This plugin will automatically import them if it comes across them in the JSX.
|
|
36
|
+
* @default ["For","Show","Switch","Match","Suspense","SuspenseList","Portal","Index","Dynamic","ErrorBoundary"]
|
|
37
|
+
*/
|
|
38
38
|
builtIns?: string[];
|
|
39
39
|
/**
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
40
|
+
* Boolean indicates whether to set current render context on Custom Elements and slots.
|
|
41
|
+
* Useful for seemless Context API with Web Components.
|
|
42
|
+
* @default true
|
|
43
|
+
*/
|
|
44
44
|
contextToCustomElements?: boolean;
|
|
45
45
|
/**
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
* Boolean to indicate whether to enable automatic event delegation on camelCase.
|
|
47
|
+
* @default true
|
|
48
|
+
*/
|
|
49
49
|
delegateEvents?: boolean;
|
|
50
50
|
/**
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
51
|
+
* The output mode of the compiler.
|
|
52
|
+
* Can be:
|
|
53
|
+
* - "dom" is standard output
|
|
54
|
+
* - "ssr" is for server side rendering of strings.
|
|
55
|
+
* - "universal" is for using custom renderers from solid-js/universal
|
|
56
|
+
* @default "dom"
|
|
57
|
+
*/
|
|
58
58
|
generate?: "ssr" | "dom" | "universal";
|
|
59
59
|
/**
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
* Indicate whether the output should contain hydratable markers.
|
|
61
|
+
* @default false
|
|
62
|
+
*/
|
|
63
63
|
hydratable?: boolean;
|
|
64
64
|
/**
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
* The name of the runtime module to import the methods from.
|
|
66
|
+
* @default "solid-js/web"
|
|
67
|
+
*/
|
|
68
68
|
moduleName?: string;
|
|
69
69
|
/**
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
* Boolean indicates whether smart conditional detection should be used.
|
|
71
|
+
* This optimizes simple boolean expressions and ternaries in JSX.
|
|
72
|
+
* @default true
|
|
73
|
+
*/
|
|
74
74
|
wrapConditionals?: boolean;
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
|
-
* SolidJS preset for Packem. Configures Babel with babel-preset-solid.
|
|
79
|
-
* @description This preset configures Babel to run before your main transformer (esbuild/SWC/etc.).
|
|
80
|
-
* Babel handles JSX transformation for SolidJS using babel-preset-solid. TypeScript is handled
|
|
81
|
-
* automatically via parser plugins based on file extensions (no preset needed).
|
|
82
|
-
* @example
|
|
83
|
-
* ```typescript
|
|
84
|
-
* // Basic usage
|
|
85
|
-
* export default defineConfig({
|
|
86
|
-
* preset: "solid"
|
|
87
|
-
* });
|
|
88
|
-
*
|
|
89
|
-
* // With custom Solid options
|
|
90
|
-
* import { createSolidPreset } from "@visulima/packem/config/preset/solid";
|
|
91
|
-
* export default defineConfig({
|
|
92
|
-
* preset: createSolidPreset({
|
|
93
|
-
* solidOptions: {
|
|
94
|
-
* generate: "ssr",
|
|
95
|
-
* hydratable: true
|
|
96
|
-
* }
|
|
97
|
-
* })
|
|
98
|
-
* });
|
|
99
|
-
*
|
|
100
|
-
* // With custom Babel options
|
|
101
|
-
* export default defineConfig({
|
|
102
|
-
* preset: createSolidPreset({
|
|
103
|
-
* solidOptions: {
|
|
104
|
-
* moduleName: "solid-js/web"
|
|
105
|
-
* },
|
|
106
|
-
* babel: {
|
|
107
|
-
* // Additional babel options
|
|
108
|
-
* }
|
|
109
|
-
* })
|
|
110
|
-
* });
|
|
111
|
-
* ```
|
|
112
|
-
*/
|
|
78
|
+
* SolidJS preset for Packem. Configures Babel with babel-preset-solid.
|
|
79
|
+
* @description This preset configures Babel to run before your main transformer (esbuild/SWC/etc.).
|
|
80
|
+
* Babel handles JSX transformation for SolidJS using babel-preset-solid. TypeScript is handled
|
|
81
|
+
* automatically via parser plugins based on file extensions (no preset needed).
|
|
82
|
+
* @example
|
|
83
|
+
* ```typescript
|
|
84
|
+
* // Basic usage
|
|
85
|
+
* export default defineConfig({
|
|
86
|
+
* preset: "solid"
|
|
87
|
+
* });
|
|
88
|
+
*
|
|
89
|
+
* // With custom Solid options
|
|
90
|
+
* import { createSolidPreset } from "@visulima/packem/config/preset/solid";
|
|
91
|
+
* export default defineConfig({
|
|
92
|
+
* preset: createSolidPreset({
|
|
93
|
+
* solidOptions: {
|
|
94
|
+
* generate: "ssr",
|
|
95
|
+
* hydratable: true
|
|
96
|
+
* }
|
|
97
|
+
* })
|
|
98
|
+
* });
|
|
99
|
+
*
|
|
100
|
+
* // With custom Babel options
|
|
101
|
+
* export default defineConfig({
|
|
102
|
+
* preset: createSolidPreset({
|
|
103
|
+
* solidOptions: {
|
|
104
|
+
* moduleName: "solid-js/web"
|
|
105
|
+
* },
|
|
106
|
+
* babel: {
|
|
107
|
+
* // Additional babel options
|
|
108
|
+
* }
|
|
109
|
+
* })
|
|
110
|
+
* });
|
|
111
|
+
* ```
|
|
112
|
+
*/
|
|
113
113
|
declare const createSolidPreset: (options?: SolidPresetOptions) => BuildConfig;
|
|
114
114
|
export { SolidPresetOptions, createSolidPreset };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as BuildConfig } from "../../packem_shared/types.d-
|
|
1
|
+
import { B as BuildConfig } from "../../packem_shared/types.d-CA4tXIce.js";
|
|
2
2
|
import '@arethetypeswrong/core';
|
|
3
3
|
import '@visulima/packem-plugins';
|
|
4
4
|
import '@visulima/packem-plugins/oxc';
|
|
@@ -13,72 +13,72 @@ import 'rollup';
|
|
|
13
13
|
import 'typedoc';
|
|
14
14
|
interface SveltePresetOptions {
|
|
15
15
|
/**
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
* Svelte plugin options
|
|
17
|
+
*/
|
|
18
18
|
pluginOptions?: {
|
|
19
19
|
/**
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
* Svelte compiler options
|
|
21
|
+
*/
|
|
22
22
|
compilerOptions?: {
|
|
23
23
|
[key: string]: unknown;
|
|
24
24
|
/**
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
* Custom element mode
|
|
26
|
+
* @default false
|
|
27
|
+
*/
|
|
28
28
|
customElement?: boolean;
|
|
29
29
|
/**
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
* Enable dev mode
|
|
31
|
+
* @default false
|
|
32
|
+
*/
|
|
33
33
|
dev?: boolean;
|
|
34
34
|
/**
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
* Generate mode: "client" for client-side rendering, "server" for SSR
|
|
36
|
+
* @default "client"
|
|
37
|
+
*/
|
|
38
38
|
generate?: "client" | "server" | false;
|
|
39
39
|
/**
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
* Enable hydratable output
|
|
41
|
+
* @default false
|
|
42
|
+
*/
|
|
43
43
|
hydratable?: boolean;
|
|
44
44
|
};
|
|
45
45
|
/**
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
* Exclude patterns for Svelte files
|
|
47
|
+
*/
|
|
48
48
|
exclude?: RegExp | RegExp[];
|
|
49
49
|
/**
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
* Include patterns for Svelte files
|
|
51
|
+
* @default [/\.svelte$/]
|
|
52
|
+
*/
|
|
53
53
|
include?: RegExp | RegExp[];
|
|
54
54
|
/**
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
* Preprocessor options
|
|
56
|
+
*/
|
|
57
57
|
preprocess?: unknown;
|
|
58
58
|
};
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
|
-
* Svelte preset for Packem. Configures Rollup with rollup-plugin-svelte.
|
|
62
|
-
* @description This preset configures the Svelte plugin to handle .svelte file compilation.
|
|
63
|
-
* @example
|
|
64
|
-
* ```typescript
|
|
65
|
-
* // Basic usage
|
|
66
|
-
* export default defineConfig({
|
|
67
|
-
* preset: "svelte"
|
|
68
|
-
* });
|
|
69
|
-
*
|
|
70
|
-
* // With custom options
|
|
71
|
-
* import { createSveltePreset } from "@visulima/packem/config/preset/svelte";
|
|
72
|
-
* export default defineConfig({
|
|
73
|
-
* preset: createSveltePreset({
|
|
74
|
-
* pluginOptions: {
|
|
75
|
-
* compilerOptions: {
|
|
76
|
-
* hydratable: true
|
|
77
|
-
* }
|
|
78
|
-
* }
|
|
79
|
-
* })
|
|
80
|
-
* });
|
|
81
|
-
* ```
|
|
82
|
-
*/
|
|
61
|
+
* Svelte preset for Packem. Configures Rollup with rollup-plugin-svelte.
|
|
62
|
+
* @description This preset configures the Svelte plugin to handle .svelte file compilation.
|
|
63
|
+
* @example
|
|
64
|
+
* ```typescript
|
|
65
|
+
* // Basic usage
|
|
66
|
+
* export default defineConfig({
|
|
67
|
+
* preset: "svelte"
|
|
68
|
+
* });
|
|
69
|
+
*
|
|
70
|
+
* // With custom options
|
|
71
|
+
* import { createSveltePreset } from "@visulima/packem/config/preset/svelte";
|
|
72
|
+
* export default defineConfig({
|
|
73
|
+
* preset: createSveltePreset({
|
|
74
|
+
* pluginOptions: {
|
|
75
|
+
* compilerOptions: {
|
|
76
|
+
* hydratable: true
|
|
77
|
+
* }
|
|
78
|
+
* }
|
|
79
|
+
* })
|
|
80
|
+
* });
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
83
83
|
declare const createSveltePreset: (options?: SveltePresetOptions) => BuildConfig;
|
|
84
84
|
export { SveltePresetOptions, createSveltePreset };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as BuildConfig } from "../../packem_shared/types.d-
|
|
1
|
+
import { B as BuildConfig } from "../../packem_shared/types.d-CA4tXIce.js";
|
|
2
2
|
import '@arethetypeswrong/core';
|
|
3
3
|
import '@visulima/packem-plugins';
|
|
4
4
|
import '@visulima/packem-plugins/oxc';
|
|
@@ -13,26 +13,26 @@ import 'rollup';
|
|
|
13
13
|
import 'typedoc';
|
|
14
14
|
interface VuePresetOptions {
|
|
15
15
|
/**
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
* Vue plugin options
|
|
17
|
+
*/
|
|
18
18
|
pluginOptions?: {
|
|
19
19
|
/**
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
* Enable custom elements mode
|
|
21
|
+
* @default false
|
|
22
|
+
*/
|
|
23
23
|
customElement?: boolean;
|
|
24
24
|
/**
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
* Exclude patterns for Vue files
|
|
26
|
+
*/
|
|
27
27
|
exclude?: RegExp | RegExp[];
|
|
28
28
|
/**
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
* Include patterns for Vue files
|
|
30
|
+
* @default [/\.vue$/]
|
|
31
|
+
*/
|
|
32
32
|
include?: RegExp | RegExp[];
|
|
33
33
|
/**
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
* Template compiler options
|
|
35
|
+
*/
|
|
36
36
|
template?: {
|
|
37
37
|
compilerOptions?: {
|
|
38
38
|
[key: string]: unknown;
|
|
@@ -42,25 +42,25 @@ interface VuePresetOptions {
|
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
|
-
* Vue preset for Packem. Configures Rollup with unplugin-vue.
|
|
46
|
-
* @description This preset configures the Vue plugin to handle .vue file compilation.
|
|
47
|
-
* @example
|
|
48
|
-
* ```typescript
|
|
49
|
-
* // Basic usage
|
|
50
|
-
* export default defineConfig({
|
|
51
|
-
* preset: "vue"
|
|
52
|
-
* });
|
|
53
|
-
*
|
|
54
|
-
* // With custom options
|
|
55
|
-
* import { createVuePreset } from "@visulima/packem/config/preset/vue";
|
|
56
|
-
* export default defineConfig({
|
|
57
|
-
* preset: createVuePreset({
|
|
58
|
-
* pluginOptions: {
|
|
59
|
-
* customElement: true
|
|
60
|
-
* }
|
|
61
|
-
* })
|
|
62
|
-
* });
|
|
63
|
-
* ```
|
|
64
|
-
*/
|
|
45
|
+
* Vue preset for Packem. Configures Rollup with unplugin-vue.
|
|
46
|
+
* @description This preset configures the Vue plugin to handle .vue file compilation.
|
|
47
|
+
* @example
|
|
48
|
+
* ```typescript
|
|
49
|
+
* // Basic usage
|
|
50
|
+
* export default defineConfig({
|
|
51
|
+
* preset: "vue"
|
|
52
|
+
* });
|
|
53
|
+
*
|
|
54
|
+
* // With custom options
|
|
55
|
+
* import { createVuePreset } from "@visulima/packem/config/preset/vue";
|
|
56
|
+
* export default defineConfig({
|
|
57
|
+
* preset: createVuePreset({
|
|
58
|
+
* pluginOptions: {
|
|
59
|
+
* customElement: true
|
|
60
|
+
* }
|
|
61
|
+
* })
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
65
|
declare const createVuePreset: (options?: VuePresetOptions) => BuildConfig;
|
|
66
66
|
export { VuePresetOptions, createVuePreset };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ConstructorOptions } from '@visulima/pail';
|
|
2
|
-
import { B as BuildConfig } from "./packem_shared/types.d-
|
|
3
|
-
export type { c as BuildEntry, d as BuildOptions, R as RollupBuildOptions } from "./packem_shared/types.d-
|
|
2
|
+
import { B as BuildConfig } from "./packem_shared/types.d-CA4tXIce.js";
|
|
3
|
+
export type { c as BuildEntry, d as BuildOptions, R as RollupBuildOptions } from "./packem_shared/types.d-CA4tXIce.js";
|
|
4
4
|
export type { TransformerFn, TransformerName } from '@visulima/packem-plugins';
|
|
5
5
|
import { Environment, Mode } from '@visulima/packem-share/types';
|
|
6
6
|
export type { BuildContext, BuildContextBuildAssetAndChunk, BuildContextBuildEntry, BuildHooks, Environment, Mode, Runtime } from '@visulima/packem-share/types';
|
|
@@ -15,47 +15,47 @@ import 'jiti';
|
|
|
15
15
|
import 'rollup';
|
|
16
16
|
import 'typedoc';
|
|
17
17
|
/**
|
|
18
|
-
* Configuration options for Packem bundler.
|
|
19
|
-
* @interface PackemOptions
|
|
20
|
-
* @augments {BuildConfig}
|
|
21
|
-
*/
|
|
18
|
+
* Configuration options for Packem bundler.
|
|
19
|
+
* @interface PackemOptions
|
|
20
|
+
* @augments {BuildConfig}
|
|
21
|
+
*/
|
|
22
22
|
interface PackemOptions extends BuildConfig {
|
|
23
23
|
/**
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
* The environment to build for
|
|
25
|
+
* Determines the build environment configuration
|
|
26
|
+
* @default "production"
|
|
27
|
+
* @type {Environment}
|
|
28
|
+
* @memberof PackemOptions
|
|
29
|
+
*/
|
|
30
30
|
environment?: Environment;
|
|
31
31
|
/**
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
32
|
+
* Logger configuration options
|
|
33
|
+
* Used to customize the logging behavior and output format
|
|
34
|
+
* @type {ConstructorOptions<string, string>}
|
|
35
|
+
* @memberof PackemOptions
|
|
36
|
+
*/
|
|
37
37
|
logger?: ConstructorOptions<string, string>;
|
|
38
38
|
/**
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
39
|
+
* The mode to run Packem in
|
|
40
|
+
* Controls how the bundler processes and optimizes the code
|
|
41
|
+
* @default "build"
|
|
42
|
+
* @type {Mode}
|
|
43
|
+
* @memberof PackemOptions
|
|
44
|
+
*/
|
|
45
45
|
mode?: Mode;
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
|
-
* Runs the Packem bundler with the specified options.
|
|
49
|
-
* @param rootDirectory The root directory of the project to bundle
|
|
50
|
-
* @param options Configuration options for the bundler
|
|
51
|
-
* @returns Promise that resolves with the build result
|
|
52
|
-
* @example
|
|
53
|
-
* ```typescript
|
|
54
|
-
* const result = await packem("./src", {
|
|
55
|
-
* mode: "build",
|
|
56
|
-
* environment: "production"
|
|
57
|
-
* });
|
|
58
|
-
* ```
|
|
59
|
-
*/
|
|
48
|
+
* Runs the Packem bundler with the specified options.
|
|
49
|
+
* @param rootDirectory The root directory of the project to bundle
|
|
50
|
+
* @param options Configuration options for the bundler
|
|
51
|
+
* @returns Promise that resolves with the build result
|
|
52
|
+
* @example
|
|
53
|
+
* ```typescript
|
|
54
|
+
* const result = await packem("./src", {
|
|
55
|
+
* mode: "build",
|
|
56
|
+
* environment: "production"
|
|
57
|
+
* });
|
|
58
|
+
* ```
|
|
59
|
+
*/
|
|
60
60
|
declare const packem: (rootDirectory: string, options?: PackemOptions) => Promise<void>;
|
|
61
61
|
export { PackemOptions, packem };
|