powerlines 0.46.0 → 0.46.1
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/dist/farm.d.cts +44 -1
- package/dist/farm.d.cts.map +1 -1
- package/dist/farm.d.mts +44 -1
- package/dist/farm.d.mts.map +1 -1
- package/dist/package.cjs +1 -1
- package/dist/package.mjs +1 -1
- package/dist/rolldown.d.cts +1 -1
- package/dist/rollup.d.cts +1 -1
- package/dist/tsdown.d.cts +1 -1
- package/dist/tsup.d.cts +1 -1
- package/dist/unloader.d.cts +44 -1
- package/dist/unloader.d.cts.map +1 -1
- package/dist/unloader.d.mts +44 -1
- package/dist/unloader.d.mts.map +1 -1
- package/dist/vite.d.cts +1 -1
- package/dist/webpack.d.cts +1 -1
- package/package.json +4 -4
package/dist/farm.d.cts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
import * as _$_powerlines_core0 from "@powerlines/core";
|
|
2
|
+
import * as _$_powerlines_plugin_esbuild0 from "@powerlines/plugin-esbuild";
|
|
3
|
+
import * as _$_stryke_types_configuration0 from "@stryke/types/configuration";
|
|
4
|
+
import * as _$compatx from "compatx";
|
|
5
|
+
import * as _$_powerlines_plugin_vite0 from "@powerlines/plugin-vite";
|
|
6
|
+
import * as _$_powerlines_plugin_webpack0 from "@powerlines/plugin-webpack";
|
|
7
|
+
import * as _$_powerlines_plugin_rolldown0 from "@powerlines/plugin-rolldown";
|
|
8
|
+
import * as _$_powerlines_plugin_rollup0 from "@powerlines/plugin-rollup";
|
|
9
|
+
import * as _$_powerlines_plugin_unbuild0 from "@powerlines/plugin-unbuild";
|
|
10
|
+
import * as _$_powerlines_plugin_tsdown0 from "@powerlines/plugin-tsdown";
|
|
11
|
+
import * as _$_powerlines_plugin_tsup0 from "@powerlines/plugin-tsup";
|
|
2
12
|
import * as _$_farmfe_core0 from "@farmfe/core";
|
|
3
13
|
|
|
4
14
|
//#region src/farm.d.ts
|
|
@@ -19,7 +29,40 @@ import * as _$_farmfe_core0 from "@farmfe/core";
|
|
|
19
29
|
*
|
|
20
30
|
* ```
|
|
21
31
|
*/
|
|
22
|
-
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<
|
|
32
|
+
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<{
|
|
33
|
+
readonly name?: string | undefined;
|
|
34
|
+
readonly title?: string | undefined;
|
|
35
|
+
readonly description?: string | undefined;
|
|
36
|
+
readonly organization?: string | undefined;
|
|
37
|
+
readonly logLevel?: _$_powerlines_core0.LogLevelUserConfig | undefined;
|
|
38
|
+
readonly customLogger?: _$_powerlines_core0.CustomLogger | undefined;
|
|
39
|
+
readonly projectType?: _$_powerlines_core0.ProjectType | undefined;
|
|
40
|
+
readonly autoInstall?: boolean | undefined;
|
|
41
|
+
readonly skipCache?: boolean | undefined;
|
|
42
|
+
readonly plugins?: _$_powerlines_core0.PluginConfig<any>[] | undefined;
|
|
43
|
+
readonly environments?: Record<string, _$_powerlines_core0.EnvironmentConfig> | undefined;
|
|
44
|
+
readonly singleBuild?: boolean | undefined;
|
|
45
|
+
readonly root?: string | undefined;
|
|
46
|
+
readonly mode?: _$_powerlines_core0.Mode | undefined;
|
|
47
|
+
readonly framework?: string | undefined;
|
|
48
|
+
readonly input: _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[] | Record<string, _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[]>;
|
|
49
|
+
readonly output?: _$_powerlines_core0.OutputConfig | undefined;
|
|
50
|
+
readonly compatibilityDate?: _$compatx.CompatibilityDateSpec | undefined;
|
|
51
|
+
readonly resolve?: _$_powerlines_core0.ResolveConfig | undefined;
|
|
52
|
+
readonly platform?: "node" | "browser" | "neutral" | undefined;
|
|
53
|
+
readonly define?: Record<string, any> | undefined;
|
|
54
|
+
readonly inject?: Record<string, string | string[]> | undefined;
|
|
55
|
+
readonly tsconfig?: string | undefined;
|
|
56
|
+
readonly tsconfigRaw?: _$_powerlines_core0.TSConfig | undefined;
|
|
57
|
+
readonly vite?: _$_powerlines_plugin_vite0.VitePluginOptions | undefined;
|
|
58
|
+
readonly esbuild?: _$_powerlines_plugin_esbuild0.EsbuildPluginOptions | undefined;
|
|
59
|
+
readonly webpack?: _$_powerlines_plugin_webpack0.WebpackPluginOptions | undefined;
|
|
60
|
+
readonly rolldown?: _$_powerlines_plugin_rolldown0.RolldownPluginOptions | undefined;
|
|
61
|
+
readonly rollup?: _$_powerlines_plugin_rollup0.RollupPluginOptions | undefined;
|
|
62
|
+
readonly unbuild?: _$_powerlines_plugin_unbuild0.UnbuildPluginOptions | undefined;
|
|
63
|
+
readonly tsdown?: _$_powerlines_plugin_tsdown0.TsdownPluginOptions | undefined;
|
|
64
|
+
readonly tsup?: _$_powerlines_plugin_tsup0.TsupPluginOptions | undefined;
|
|
65
|
+
}>) => _$_farmfe_core0.JsPlugin;
|
|
23
66
|
//#endregion
|
|
24
67
|
export { unplugin as farm, unplugin };
|
|
25
68
|
//# sourceMappingURL=farm.d.cts.map
|
package/dist/farm.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"farm.d.cts","names":[],"sources":["../src/farm.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"farm.d.cts","names":[],"sources":["../src/farm.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA;;;cAAa,QAAA,GAAQ,OAAA,sBAAA,mBAAA;EAAA;;;;sBAAkD,mBAAA,CAAA,kBAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAlD,eAAA,CAAA,QAAA"}
|
package/dist/farm.d.mts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
+
import * as _$_powerlines_plugin_vite0 from "@powerlines/plugin-vite";
|
|
2
|
+
import * as _$_powerlines_plugin_esbuild0 from "@powerlines/plugin-esbuild";
|
|
3
|
+
import * as _$_powerlines_plugin_webpack0 from "@powerlines/plugin-webpack";
|
|
4
|
+
import * as _$_powerlines_plugin_rolldown0 from "@powerlines/plugin-rolldown";
|
|
5
|
+
import * as _$_powerlines_plugin_rollup0 from "@powerlines/plugin-rollup";
|
|
6
|
+
import * as _$_powerlines_plugin_tsdown0 from "@powerlines/plugin-tsdown";
|
|
7
|
+
import * as _$_powerlines_plugin_tsup0 from "@powerlines/plugin-tsup";
|
|
8
|
+
import * as _$_powerlines_plugin_unbuild0 from "@powerlines/plugin-unbuild";
|
|
1
9
|
import * as _$_powerlines_core0 from "@powerlines/core";
|
|
10
|
+
import * as _$_stryke_types_configuration0 from "@stryke/types/configuration";
|
|
11
|
+
import * as _$compatx from "compatx";
|
|
2
12
|
import * as _$_farmfe_core0 from "@farmfe/core";
|
|
3
13
|
|
|
4
14
|
//#region src/farm.d.ts
|
|
@@ -19,7 +29,40 @@ import * as _$_farmfe_core0 from "@farmfe/core";
|
|
|
19
29
|
*
|
|
20
30
|
* ```
|
|
21
31
|
*/
|
|
22
|
-
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<
|
|
32
|
+
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<{
|
|
33
|
+
readonly name?: string | undefined;
|
|
34
|
+
readonly title?: string | undefined;
|
|
35
|
+
readonly description?: string | undefined;
|
|
36
|
+
readonly organization?: string | undefined;
|
|
37
|
+
readonly logLevel?: _$_powerlines_core0.LogLevelUserConfig | undefined;
|
|
38
|
+
readonly customLogger?: _$_powerlines_core0.CustomLogger | undefined;
|
|
39
|
+
readonly projectType?: _$_powerlines_core0.ProjectType | undefined;
|
|
40
|
+
readonly autoInstall?: boolean | undefined;
|
|
41
|
+
readonly skipCache?: boolean | undefined;
|
|
42
|
+
readonly plugins?: _$_powerlines_core0.PluginConfig<any>[] | undefined;
|
|
43
|
+
readonly environments?: Record<string, _$_powerlines_core0.EnvironmentConfig> | undefined;
|
|
44
|
+
readonly singleBuild?: boolean | undefined;
|
|
45
|
+
readonly root?: string | undefined;
|
|
46
|
+
readonly mode?: _$_powerlines_core0.Mode | undefined;
|
|
47
|
+
readonly framework?: string | undefined;
|
|
48
|
+
readonly input: _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[] | Record<string, _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[]>;
|
|
49
|
+
readonly output?: _$_powerlines_core0.OutputConfig | undefined;
|
|
50
|
+
readonly compatibilityDate?: _$compatx.CompatibilityDateSpec | undefined;
|
|
51
|
+
readonly resolve?: _$_powerlines_core0.ResolveConfig | undefined;
|
|
52
|
+
readonly platform?: "node" | "browser" | "neutral" | undefined;
|
|
53
|
+
readonly define?: Record<string, any> | undefined;
|
|
54
|
+
readonly inject?: Record<string, string | string[]> | undefined;
|
|
55
|
+
readonly tsconfig?: string | undefined;
|
|
56
|
+
readonly tsconfigRaw?: _$_powerlines_core0.TSConfig | undefined;
|
|
57
|
+
readonly vite?: _$_powerlines_plugin_vite0.VitePluginOptions | undefined;
|
|
58
|
+
readonly esbuild?: _$_powerlines_plugin_esbuild0.EsbuildPluginOptions | undefined;
|
|
59
|
+
readonly webpack?: _$_powerlines_plugin_webpack0.WebpackPluginOptions | undefined;
|
|
60
|
+
readonly rolldown?: _$_powerlines_plugin_rolldown0.RolldownPluginOptions | undefined;
|
|
61
|
+
readonly rollup?: _$_powerlines_plugin_rollup0.RollupPluginOptions | undefined;
|
|
62
|
+
readonly unbuild?: _$_powerlines_plugin_unbuild0.UnbuildPluginOptions | undefined;
|
|
63
|
+
readonly tsdown?: _$_powerlines_plugin_tsdown0.TsdownPluginOptions | undefined;
|
|
64
|
+
readonly tsup?: _$_powerlines_plugin_tsup0.TsupPluginOptions | undefined;
|
|
65
|
+
}>) => _$_farmfe_core0.JsPlugin;
|
|
23
66
|
//#endregion
|
|
24
67
|
export { unplugin as farm, unplugin };
|
|
25
68
|
//# sourceMappingURL=farm.d.mts.map
|
package/dist/farm.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"farm.d.mts","names":[],"sources":["../src/farm.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"farm.d.mts","names":[],"sources":["../src/farm.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA;;;cAAa,QAAA,GAAQ,OAAA,sBAAA,mBAAA;EAAA;;;;sBAAkD,mBAAA,CAAA,kBAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAlD,eAAA,CAAA,QAAA"}
|
package/dist/package.cjs
CHANGED
package/dist/package.mjs
CHANGED
package/dist/rolldown.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import plugin, { default as rolldown } from "@powerlines/plugin-rolldown";
|
|
1
2
|
import * as _$rolldown from "rolldown";
|
|
2
3
|
import { RolldownPluginInitialConfig } from "@powerlines/plugin-rolldown/types/plugin";
|
|
3
|
-
import plugin, { default as rolldown } from "@powerlines/plugin-rolldown";
|
|
4
4
|
|
|
5
5
|
//#region src/rolldown.d.ts
|
|
6
6
|
/**
|
package/dist/rollup.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import plugin, { default as rollup } from "@powerlines/plugin-rollup";
|
|
1
2
|
import * as _$rollup from "rollup";
|
|
2
3
|
import { RollupPluginInitialConfig } from "@powerlines/plugin-rollup/types/plugin";
|
|
3
|
-
import plugin, { default as rollup } from "@powerlines/plugin-rollup";
|
|
4
4
|
|
|
5
5
|
//#region src/rollup.d.ts
|
|
6
6
|
/**
|
package/dist/tsdown.d.cts
CHANGED
package/dist/tsup.d.cts
CHANGED
package/dist/unloader.d.cts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
import * as _$_powerlines_core0 from "@powerlines/core";
|
|
2
|
+
import * as _$_powerlines_plugin_esbuild0 from "@powerlines/plugin-esbuild";
|
|
3
|
+
import * as _$_stryke_types_configuration0 from "@stryke/types/configuration";
|
|
4
|
+
import * as _$compatx from "compatx";
|
|
5
|
+
import * as _$_powerlines_plugin_vite0 from "@powerlines/plugin-vite";
|
|
6
|
+
import * as _$_powerlines_plugin_webpack0 from "@powerlines/plugin-webpack";
|
|
7
|
+
import * as _$_powerlines_plugin_rolldown0 from "@powerlines/plugin-rolldown";
|
|
8
|
+
import * as _$_powerlines_plugin_rollup0 from "@powerlines/plugin-rollup";
|
|
9
|
+
import * as _$_powerlines_plugin_unbuild0 from "@powerlines/plugin-unbuild";
|
|
10
|
+
import * as _$_powerlines_plugin_tsdown0 from "@powerlines/plugin-tsdown";
|
|
11
|
+
import * as _$_powerlines_plugin_tsup0 from "@powerlines/plugin-tsup";
|
|
2
12
|
import * as _$unloader from "unloader";
|
|
3
13
|
|
|
4
14
|
//#region src/unloader.d.ts
|
|
@@ -16,7 +26,40 @@ import * as _$unloader from "unloader";
|
|
|
16
26
|
*
|
|
17
27
|
* ```
|
|
18
28
|
*/
|
|
19
|
-
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<
|
|
29
|
+
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<{
|
|
30
|
+
readonly name?: string | undefined;
|
|
31
|
+
readonly title?: string | undefined;
|
|
32
|
+
readonly description?: string | undefined;
|
|
33
|
+
readonly organization?: string | undefined;
|
|
34
|
+
readonly logLevel?: _$_powerlines_core0.LogLevelUserConfig | undefined;
|
|
35
|
+
readonly customLogger?: _$_powerlines_core0.CustomLogger | undefined;
|
|
36
|
+
readonly projectType?: _$_powerlines_core0.ProjectType | undefined;
|
|
37
|
+
readonly autoInstall?: boolean | undefined;
|
|
38
|
+
readonly skipCache?: boolean | undefined;
|
|
39
|
+
readonly plugins?: _$_powerlines_core0.PluginConfig<any>[] | undefined;
|
|
40
|
+
readonly environments?: Record<string, _$_powerlines_core0.EnvironmentConfig> | undefined;
|
|
41
|
+
readonly singleBuild?: boolean | undefined;
|
|
42
|
+
readonly root?: string | undefined;
|
|
43
|
+
readonly mode?: _$_powerlines_core0.Mode | undefined;
|
|
44
|
+
readonly framework?: string | undefined;
|
|
45
|
+
readonly input: _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[] | Record<string, _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[]>;
|
|
46
|
+
readonly output?: _$_powerlines_core0.OutputConfig | undefined;
|
|
47
|
+
readonly compatibilityDate?: _$compatx.CompatibilityDateSpec | undefined;
|
|
48
|
+
readonly resolve?: _$_powerlines_core0.ResolveConfig | undefined;
|
|
49
|
+
readonly platform?: "node" | "browser" | "neutral" | undefined;
|
|
50
|
+
readonly define?: Record<string, any> | undefined;
|
|
51
|
+
readonly inject?: Record<string, string | string[]> | undefined;
|
|
52
|
+
readonly tsconfig?: string | undefined;
|
|
53
|
+
readonly tsconfigRaw?: _$_powerlines_core0.TSConfig | undefined;
|
|
54
|
+
readonly vite?: _$_powerlines_plugin_vite0.VitePluginOptions | undefined;
|
|
55
|
+
readonly esbuild?: _$_powerlines_plugin_esbuild0.EsbuildPluginOptions | undefined;
|
|
56
|
+
readonly webpack?: _$_powerlines_plugin_webpack0.WebpackPluginOptions | undefined;
|
|
57
|
+
readonly rolldown?: _$_powerlines_plugin_rolldown0.RolldownPluginOptions | undefined;
|
|
58
|
+
readonly rollup?: _$_powerlines_plugin_rollup0.RollupPluginOptions | undefined;
|
|
59
|
+
readonly unbuild?: _$_powerlines_plugin_unbuild0.UnbuildPluginOptions | undefined;
|
|
60
|
+
readonly tsdown?: _$_powerlines_plugin_tsdown0.TsdownPluginOptions | undefined;
|
|
61
|
+
readonly tsup?: _$_powerlines_plugin_tsup0.TsupPluginOptions | undefined;
|
|
62
|
+
}>) => _$unloader.Plugin | _$unloader.Plugin[];
|
|
20
63
|
//#endregion
|
|
21
64
|
export { unplugin as unloader, unplugin };
|
|
22
65
|
//# sourceMappingURL=unloader.d.cts.map
|
package/dist/unloader.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unloader.d.cts","names":[],"sources":["../src/unloader.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"unloader.d.cts","names":[],"sources":["../src/unloader.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCa,QAAA,GAAQ,OAAA,sBAAA,mBAAA;EAAA;;;;sBAA0D,mBAAA,CAAA,kBAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;OAA1D,UAAA,CAAA,MAAA"}
|
package/dist/unloader.d.mts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
+
import * as _$_powerlines_plugin_vite0 from "@powerlines/plugin-vite";
|
|
2
|
+
import * as _$_powerlines_plugin_esbuild0 from "@powerlines/plugin-esbuild";
|
|
3
|
+
import * as _$_powerlines_plugin_webpack0 from "@powerlines/plugin-webpack";
|
|
4
|
+
import * as _$_powerlines_plugin_rolldown0 from "@powerlines/plugin-rolldown";
|
|
5
|
+
import * as _$_powerlines_plugin_rollup0 from "@powerlines/plugin-rollup";
|
|
6
|
+
import * as _$_powerlines_plugin_tsdown0 from "@powerlines/plugin-tsdown";
|
|
7
|
+
import * as _$_powerlines_plugin_tsup0 from "@powerlines/plugin-tsup";
|
|
8
|
+
import * as _$_powerlines_plugin_unbuild0 from "@powerlines/plugin-unbuild";
|
|
1
9
|
import * as _$_powerlines_core0 from "@powerlines/core";
|
|
10
|
+
import * as _$_stryke_types_configuration0 from "@stryke/types/configuration";
|
|
11
|
+
import * as _$compatx from "compatx";
|
|
2
12
|
import * as _$unloader from "unloader";
|
|
3
13
|
|
|
4
14
|
//#region src/unloader.d.ts
|
|
@@ -16,7 +26,40 @@ import * as _$unloader from "unloader";
|
|
|
16
26
|
*
|
|
17
27
|
* ```
|
|
18
28
|
*/
|
|
19
|
-
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<
|
|
29
|
+
declare const unplugin: (options: _$_powerlines_core0.InitialPluginConfig<{
|
|
30
|
+
readonly name?: string | undefined;
|
|
31
|
+
readonly title?: string | undefined;
|
|
32
|
+
readonly description?: string | undefined;
|
|
33
|
+
readonly organization?: string | undefined;
|
|
34
|
+
readonly logLevel?: _$_powerlines_core0.LogLevelUserConfig | undefined;
|
|
35
|
+
readonly customLogger?: _$_powerlines_core0.CustomLogger | undefined;
|
|
36
|
+
readonly projectType?: _$_powerlines_core0.ProjectType | undefined;
|
|
37
|
+
readonly autoInstall?: boolean | undefined;
|
|
38
|
+
readonly skipCache?: boolean | undefined;
|
|
39
|
+
readonly plugins?: _$_powerlines_core0.PluginConfig<any>[] | undefined;
|
|
40
|
+
readonly environments?: Record<string, _$_powerlines_core0.EnvironmentConfig> | undefined;
|
|
41
|
+
readonly singleBuild?: boolean | undefined;
|
|
42
|
+
readonly root?: string | undefined;
|
|
43
|
+
readonly mode?: _$_powerlines_core0.Mode | undefined;
|
|
44
|
+
readonly framework?: string | undefined;
|
|
45
|
+
readonly input: _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[] | Record<string, _$_stryke_types_configuration0.TypeDefinitionParameter | _$_stryke_types_configuration0.TypeDefinitionParameter[]>;
|
|
46
|
+
readonly output?: _$_powerlines_core0.OutputConfig | undefined;
|
|
47
|
+
readonly compatibilityDate?: _$compatx.CompatibilityDateSpec | undefined;
|
|
48
|
+
readonly resolve?: _$_powerlines_core0.ResolveConfig | undefined;
|
|
49
|
+
readonly platform?: "node" | "browser" | "neutral" | undefined;
|
|
50
|
+
readonly define?: Record<string, any> | undefined;
|
|
51
|
+
readonly inject?: Record<string, string | string[]> | undefined;
|
|
52
|
+
readonly tsconfig?: string | undefined;
|
|
53
|
+
readonly tsconfigRaw?: _$_powerlines_core0.TSConfig | undefined;
|
|
54
|
+
readonly vite?: _$_powerlines_plugin_vite0.VitePluginOptions | undefined;
|
|
55
|
+
readonly esbuild?: _$_powerlines_plugin_esbuild0.EsbuildPluginOptions | undefined;
|
|
56
|
+
readonly webpack?: _$_powerlines_plugin_webpack0.WebpackPluginOptions | undefined;
|
|
57
|
+
readonly rolldown?: _$_powerlines_plugin_rolldown0.RolldownPluginOptions | undefined;
|
|
58
|
+
readonly rollup?: _$_powerlines_plugin_rollup0.RollupPluginOptions | undefined;
|
|
59
|
+
readonly unbuild?: _$_powerlines_plugin_unbuild0.UnbuildPluginOptions | undefined;
|
|
60
|
+
readonly tsdown?: _$_powerlines_plugin_tsdown0.TsdownPluginOptions | undefined;
|
|
61
|
+
readonly tsup?: _$_powerlines_plugin_tsup0.TsupPluginOptions | undefined;
|
|
62
|
+
}>) => _$unloader.Plugin | _$unloader.Plugin[];
|
|
20
63
|
//#endregion
|
|
21
64
|
export { unplugin as unloader, unplugin };
|
|
22
65
|
//# sourceMappingURL=unloader.d.mts.map
|
package/dist/unloader.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unloader.d.mts","names":[],"sources":["../src/unloader.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"unloader.d.mts","names":[],"sources":["../src/unloader.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCa,QAAA,GAAQ,OAAA,sBAAA,mBAAA;EAAA;;;;sBAA0D,mBAAA,CAAA,kBAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;OAA1D,UAAA,CAAA,MAAA"}
|
package/dist/vite.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import plugin, { default as vite } from "@powerlines/plugin-vite";
|
|
1
2
|
import * as _$vite from "vite";
|
|
2
3
|
import { VitePluginInitialConfig } from "@powerlines/plugin-vite/types";
|
|
3
|
-
import plugin, { default as vite } from "@powerlines/plugin-vite";
|
|
4
4
|
|
|
5
5
|
//#region src/vite.d.ts
|
|
6
6
|
/**
|
package/dist/webpack.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import plugin, { default as webpack } from "@powerlines/plugin-webpack";
|
|
1
2
|
import * as _$webpack from "webpack";
|
|
2
3
|
import { WebpackPluginInitialConfig } from "@powerlines/plugin-webpack/types/plugin";
|
|
3
|
-
import plugin, { default as webpack } from "@powerlines/plugin-webpack";
|
|
4
4
|
|
|
5
5
|
//#region src/webpack.d.ts
|
|
6
6
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "powerlines",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The \"framework framework\" that simplifies modern dev tool usage, generates virtual (or actual) code modules, and improves DX across the board.",
|
|
6
6
|
"keywords": [
|
|
@@ -373,8 +373,8 @@
|
|
|
373
373
|
"files": ["dist/**/*", "files/**/*", "schemas/**/*"],
|
|
374
374
|
"dependencies": {
|
|
375
375
|
"@babel/types": "8.0.0-rc.4",
|
|
376
|
-
"@powerlines/core": "^0.46.
|
|
377
|
-
"@powerlines/engine": "^0.46.
|
|
376
|
+
"@powerlines/core": "^0.46.1",
|
|
377
|
+
"@powerlines/engine": "^0.46.1",
|
|
378
378
|
"@storm-software/config": "^1.137.34",
|
|
379
379
|
"@storm-software/config-tools": "^1.190.1",
|
|
380
380
|
"@stryke/fs": "^0.33.70",
|
|
@@ -441,5 +441,5 @@
|
|
|
441
441
|
},
|
|
442
442
|
"publishConfig": { "access": "public" },
|
|
443
443
|
"bin": { "powerlines": "./bin/bin.mjs" },
|
|
444
|
-
"gitHead": "
|
|
444
|
+
"gitHead": "de70be13e6fd973ea0b1c56b8915223dcfb4a708"
|
|
445
445
|
}
|