@powerlines/plugin-tsdown 0.1.76 → 0.1.77

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.
Files changed (130) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +29 -0
  2. package/dist/helpers/index.cjs +2 -3
  3. package/dist/helpers/index.d.cts +1 -3
  4. package/dist/helpers/index.d.mts +1 -3
  5. package/dist/helpers/index.mjs +1 -2
  6. package/dist/helpers/unplugin.cjs +11 -2
  7. package/dist/helpers/unplugin.d.cts +6 -2
  8. package/dist/helpers/unplugin.d.mts +6 -2
  9. package/dist/helpers/unplugin.mjs +9 -1
  10. package/dist/index.cjs +8 -96
  11. package/dist/index.d.cts +3 -4
  12. package/dist/index.d.mts +5 -5
  13. package/dist/index.mjs +3 -92
  14. package/dist/powerlines/schemas/fs.cjs +226 -0
  15. package/dist/powerlines/schemas/fs.mjs +224 -0
  16. package/dist/powerlines/src/api.cjs +580 -0
  17. package/dist/powerlines/src/api.mjs +578 -0
  18. package/dist/powerlines/src/internal/babel/module-resolver-plugin.cjs +86 -0
  19. package/dist/powerlines/src/internal/babel/module-resolver-plugin.mjs +84 -0
  20. package/dist/powerlines/src/internal/helpers/environment.cjs +52 -0
  21. package/dist/powerlines/src/internal/helpers/environment.mjs +48 -0
  22. package/dist/powerlines/src/internal/helpers/generate-types.cjs +51 -0
  23. package/dist/powerlines/src/internal/helpers/generate-types.mjs +49 -0
  24. package/dist/powerlines/src/internal/helpers/hooks.cjs +63 -0
  25. package/dist/powerlines/src/internal/helpers/hooks.mjs +61 -0
  26. package/dist/powerlines/src/internal/helpers/install-dependencies.cjs +25 -0
  27. package/dist/powerlines/src/internal/helpers/install-dependencies.mjs +24 -0
  28. package/dist/powerlines/src/internal/helpers/install.cjs +37 -0
  29. package/dist/powerlines/src/internal/helpers/install.mjs +36 -0
  30. package/dist/powerlines/src/internal/helpers/resolve-tsconfig.cjs +98 -0
  31. package/dist/powerlines/src/internal/helpers/resolve-tsconfig.mjs +94 -0
  32. package/dist/powerlines/src/internal/helpers/resolver.cjs +43 -0
  33. package/dist/powerlines/src/internal/helpers/resolver.mjs +41 -0
  34. package/dist/powerlines/src/lib/build/tsdown.cjs +93 -0
  35. package/dist/powerlines/src/lib/build/tsdown.mjs +91 -0
  36. package/dist/powerlines/src/lib/config-file.cjs +79 -0
  37. package/dist/powerlines/src/lib/config-file.mjs +76 -0
  38. package/dist/powerlines/src/lib/contexts/api-context.cjs +184 -0
  39. package/dist/powerlines/src/lib/contexts/api-context.mjs +182 -0
  40. package/dist/powerlines/src/lib/contexts/context.cjs +933 -0
  41. package/dist/powerlines/src/lib/contexts/context.mjs +931 -0
  42. package/dist/powerlines/src/lib/contexts/environment-context.cjs +160 -0
  43. package/dist/powerlines/src/lib/contexts/environment-context.mjs +159 -0
  44. package/dist/powerlines/src/lib/contexts/plugin-context.cjs +75 -0
  45. package/dist/powerlines/src/lib/contexts/plugin-context.mjs +74 -0
  46. package/dist/powerlines/src/lib/entry.cjs +69 -0
  47. package/dist/powerlines/src/lib/entry.mjs +67 -0
  48. package/dist/powerlines/src/lib/fs/helpers.cjs +85 -0
  49. package/dist/powerlines/src/lib/fs/helpers.mjs +81 -0
  50. package/dist/powerlines/src/lib/fs/storage/base.cjs +196 -0
  51. package/dist/powerlines/src/lib/fs/storage/base.mjs +195 -0
  52. package/dist/powerlines/src/lib/fs/storage/file-system.cjs +170 -0
  53. package/dist/powerlines/src/lib/fs/storage/file-system.mjs +169 -0
  54. package/dist/powerlines/src/lib/fs/storage/virtual.cjs +88 -0
  55. package/dist/powerlines/src/lib/fs/storage/virtual.mjs +87 -0
  56. package/dist/powerlines/src/lib/fs/vfs.cjs +830 -0
  57. package/dist/powerlines/src/lib/fs/vfs.mjs +828 -0
  58. package/dist/powerlines/src/lib/logger.cjs +58 -0
  59. package/dist/powerlines/src/lib/logger.mjs +55 -0
  60. package/dist/powerlines/src/lib/typescript/ts-morph.cjs +104 -0
  61. package/dist/powerlines/src/lib/typescript/ts-morph.mjs +102 -0
  62. package/dist/powerlines/src/lib/typescript/tsconfig.cjs +149 -0
  63. package/dist/powerlines/src/lib/typescript/tsconfig.mjs +144 -0
  64. package/dist/powerlines/src/lib/unplugin/factory.cjs +6 -0
  65. package/dist/powerlines/src/lib/unplugin/factory.mjs +8 -0
  66. package/dist/powerlines/src/lib/unplugin/helpers.cjs +17 -0
  67. package/dist/powerlines/src/lib/unplugin/helpers.mjs +16 -0
  68. package/dist/powerlines/src/lib/unplugin/index.cjs +3 -0
  69. package/dist/powerlines/src/lib/unplugin/index.mjs +5 -0
  70. package/dist/powerlines/src/lib/unplugin/plugin.cjs +128 -0
  71. package/dist/powerlines/src/lib/unplugin/plugin.mjs +127 -0
  72. package/dist/powerlines/src/lib/utilities/file-header.cjs +22 -0
  73. package/dist/powerlines/src/lib/utilities/file-header.mjs +21 -0
  74. package/dist/powerlines/src/lib/utilities/meta.cjs +45 -0
  75. package/dist/powerlines/src/lib/utilities/meta.mjs +41 -0
  76. package/dist/powerlines/src/lib/utilities/source-file.cjs +22 -0
  77. package/dist/powerlines/src/lib/utilities/source-file.mjs +21 -0
  78. package/dist/powerlines/src/plugin-utils/helpers.cjs +148 -0
  79. package/dist/powerlines/src/plugin-utils/helpers.mjs +138 -0
  80. package/dist/powerlines/src/plugin-utils/paths.cjs +36 -0
  81. package/dist/powerlines/src/plugin-utils/paths.mjs +35 -0
  82. package/dist/powerlines/src/types/babel.d.mts +4 -0
  83. package/dist/powerlines/src/types/build.cjs +15 -0
  84. package/dist/powerlines/src/types/build.d.cts +149 -0
  85. package/dist/powerlines/src/types/build.d.mts +149 -0
  86. package/dist/powerlines/src/types/build.mjs +14 -0
  87. package/dist/powerlines/src/types/commands.cjs +16 -0
  88. package/dist/powerlines/src/types/commands.d.cts +8 -0
  89. package/dist/powerlines/src/types/commands.d.mts +9 -0
  90. package/dist/powerlines/src/types/commands.mjs +15 -0
  91. package/dist/powerlines/src/types/config.d.cts +377 -0
  92. package/dist/powerlines/src/types/config.d.mts +378 -0
  93. package/dist/powerlines/src/types/context.d.cts +403 -0
  94. package/dist/powerlines/src/types/context.d.mts +405 -0
  95. package/dist/powerlines/src/types/fs.d.cts +486 -0
  96. package/dist/powerlines/src/types/fs.d.mts +486 -0
  97. package/dist/powerlines/src/types/hooks.d.mts +2 -0
  98. package/dist/powerlines/src/types/plugin.cjs +32 -0
  99. package/dist/powerlines/src/types/plugin.d.cts +231 -0
  100. package/dist/powerlines/src/types/plugin.d.mts +231 -0
  101. package/dist/powerlines/src/types/plugin.mjs +31 -0
  102. package/dist/powerlines/src/types/resolved.d.cts +82 -0
  103. package/dist/powerlines/src/types/resolved.d.mts +83 -0
  104. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  105. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  106. package/dist/types/index.cjs +0 -2
  107. package/dist/types/index.d.cts +1 -2
  108. package/dist/types/index.d.mts +1 -2
  109. package/dist/types/index.mjs +0 -3
  110. package/dist/types/plugin.cjs +0 -1
  111. package/dist/types/plugin.d.cts +15 -1
  112. package/dist/types/plugin.d.mts +15 -1
  113. package/dist/types/plugin.mjs +0 -2
  114. package/package.json +5 -5
  115. package/dist/helpers-B15z10jN.mjs +0 -1
  116. package/dist/helpers-LF26RHol.cjs +0 -0
  117. package/dist/index-9iG2qHLe.d.mts +0 -1
  118. package/dist/index-D4ELpJXS.d.cts +0 -1
  119. package/dist/index-D6CnpA_r.d.cts +0 -1
  120. package/dist/index-DL0uimUT.d.mts +0 -1
  121. package/dist/plugin-Bon2U6FJ.d.mts +0 -1773
  122. package/dist/plugin-Dw2Yyxv8.d.cts +0 -1771
  123. package/dist/plugin-ifZVa20V.mjs +0 -1
  124. package/dist/plugin-pBKbb5K9.cjs +0 -0
  125. package/dist/types-U3zd8PTP.mjs +0 -1
  126. package/dist/types-o3zWarRp.cjs +0 -0
  127. package/dist/unplugin-BFA4Wki8.d.cts +0 -7
  128. package/dist/unplugin-D5OxWc6M.cjs +0 -4661
  129. package/dist/unplugin-DXS3Sohh.mjs +0 -4617
  130. package/dist/unplugin-DkLP9w8V.d.mts +0 -7
@@ -0,0 +1,29 @@
1
+ //#region rolldown:runtime
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
11
+ key = keys[i];
12
+ if (!__hasOwnProp.call(to, key) && key !== except) {
13
+ __defProp(to, key, {
14
+ get: ((k) => from[k]).bind(null, key),
15
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
+ });
17
+ }
18
+ }
19
+ }
20
+ return to;
21
+ };
22
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
23
+ value: mod,
24
+ enumerable: true
25
+ }) : target, mod));
26
+
27
+ //#endregion
28
+
29
+ exports.__toESM = __toESM;
@@ -1,4 +1,3 @@
1
- const require_unplugin = require('../unplugin-D5OxWc6M.cjs');
2
- require('../helpers-LF26RHol.cjs');
1
+ const require_helpers_unplugin = require('./unplugin.cjs');
3
2
 
4
- exports.createTsdownPlugin = require_unplugin.createTsdownPlugin;
3
+ exports.createTsdownPlugin = require_helpers_unplugin.createTsdownPlugin;
@@ -1,4 +1,2 @@
1
- import "../plugin-Dw2Yyxv8.cjs";
2
- import { t as createTsdownPlugin } from "../unplugin-BFA4Wki8.cjs";
3
- import "../index-D6CnpA_r.cjs";
1
+ import { createTsdownPlugin } from "./unplugin.cjs";
4
2
  export { createTsdownPlugin };
@@ -1,4 +1,2 @@
1
- import "../plugin-Bon2U6FJ.mjs";
2
- import { t as createTsdownPlugin } from "../unplugin-DkLP9w8V.mjs";
3
- import "../index-DL0uimUT.mjs";
1
+ import { createTsdownPlugin } from "./unplugin.mjs";
4
2
  export { createTsdownPlugin };
@@ -1,4 +1,3 @@
1
- import { t as createTsdownPlugin } from "../unplugin-DXS3Sohh.mjs";
2
- import "../helpers-B15z10jN.mjs";
1
+ import { createTsdownPlugin } from "./unplugin.mjs";
3
2
 
4
3
  export { createTsdownPlugin };
@@ -1,3 +1,12 @@
1
- const require_unplugin = require('../unplugin-D5OxWc6M.cjs');
1
+ const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
2
+ const require_plugin = require('../powerlines/src/lib/unplugin/plugin.cjs');
3
+ require('../powerlines/src/lib/unplugin/index.cjs');
4
+ let unplugin = require("unplugin");
2
5
 
3
- exports.createTsdownPlugin = require_unplugin.createTsdownPlugin;
6
+ //#region src/helpers/unplugin.ts
7
+ function createTsdownPlugin(context) {
8
+ return (0, unplugin.createRolldownPlugin)(require_plugin.createUnplugin(context))({});
9
+ }
10
+
11
+ //#endregion
12
+ exports.createTsdownPlugin = createTsdownPlugin;
@@ -1,3 +1,7 @@
1
- import "../plugin-Dw2Yyxv8.cjs";
2
- import { t as createTsdownPlugin } from "../unplugin-BFA4Wki8.cjs";
1
+ import { TsdownPluginContext } from "../types/plugin.cjs";
2
+ import * as rolldown0 from "rolldown";
3
+
4
+ //#region src/helpers/unplugin.d.ts
5
+ declare function createTsdownPlugin(context: TsdownPluginContext): rolldown0.Plugin<any> | rolldown0.Plugin<any>[];
6
+ //#endregion
3
7
  export { createTsdownPlugin };
@@ -1,3 +1,7 @@
1
- import "../plugin-Bon2U6FJ.mjs";
2
- import { t as createTsdownPlugin } from "../unplugin-DkLP9w8V.mjs";
1
+ import { TsdownPluginContext } from "../types/plugin.mjs";
2
+ import * as rolldown0 from "rolldown";
3
+
4
+ //#region src/helpers/unplugin.d.ts
5
+ declare function createTsdownPlugin(context: TsdownPluginContext): rolldown0.Plugin<any> | rolldown0.Plugin<any>[];
6
+ //#endregion
3
7
  export { createTsdownPlugin };
@@ -1,3 +1,11 @@
1
- import { t as createTsdownPlugin } from "../unplugin-DXS3Sohh.mjs";
1
+ import { createUnplugin } from "../powerlines/src/lib/unplugin/plugin.mjs";
2
+ import "../powerlines/src/lib/unplugin/index.mjs";
3
+ import { createRolldownPlugin } from "unplugin";
2
4
 
5
+ //#region src/helpers/unplugin.ts
6
+ function createTsdownPlugin(context) {
7
+ return createRolldownPlugin(createUnplugin(context))({});
8
+ }
9
+
10
+ //#endregion
3
11
  export { createTsdownPlugin };
package/dist/index.cjs CHANGED
@@ -1,101 +1,13 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
- const require_unplugin = require('./unplugin-D5OxWc6M.cjs');
3
- require('./helpers-LF26RHol.cjs');
4
- require('./plugin-pBKbb5K9.cjs');
5
- require('./types-o3zWarRp.cjs');
2
+ const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
3
+ const require_tsdown = require('./powerlines/src/lib/build/tsdown.cjs');
4
+ const require_helpers_unplugin = require('./helpers/unplugin.cjs');
5
+ require('./helpers/index.cjs');
6
6
  let __storm_software_config_tools_types = require("@storm-software/config-tools/types");
7
7
  let defu = require("defu");
8
- defu = require_unplugin.__toESM(defu);
9
- let __stryke_convert_to_array = require("@stryke/convert/to-array");
10
- let __stryke_helpers_omit = require("@stryke/helpers/omit");
11
- let __stryke_path_append = require("@stryke/path/append");
12
- let __stryke_path_join_paths = require("@stryke/path/join-paths");
13
- let __stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
8
+ defu = require_rolldown_runtime.__toESM(defu);
14
9
  let tsdown = require("tsdown");
15
10
 
16
- //#region ../powerlines/src/lib/build/tsdown.ts
17
- const DEFAULT_TSDOWN_CONFIG = {
18
- platform: "neutral",
19
- target: "esnext",
20
- cjsDefault: true,
21
- unbundle: true,
22
- shims: true,
23
- fixedExtension: true,
24
- nodeProtocol: true,
25
- clean: false
26
- };
27
- /**
28
- * Resolves the entry options for [tsdown](https://github.com/rolldown/tsdown).
29
- *
30
- * @param formats - The formats to resolve.
31
- * @returns The resolved entry options.
32
- */
33
- function resolveTsdownFormat(formats) {
34
- return (0, __stryke_convert_to_array.toArray)(formats).map((format) => {
35
- switch (format) {
36
- case "cjs": return "cjs";
37
- case "iife": return "iife";
38
- case "esm":
39
- default: return "esm";
40
- }
41
- });
42
- }
43
- const formatMessage = (context, ...msgs) => msgs.filter(Boolean).join(" ").replace(new RegExp(`\\[${context.config.name}\\]`, "g"), "").trim();
44
- /**
45
- * Resolves the options for [tsdown](https://github.com/rolldown/tsdown).
46
- *
47
- * @param context - The build context.
48
- * @returns The resolved options.
49
- */
50
- function extractTsdownConfig(context) {
51
- return (0, defu.default)({
52
- entry: context.entry.length > 0 ? context.entry.filter(Boolean).map((entry) => {
53
- return (0, __stryke_path_append.appendPath)((0, __stryke_path_append.appendPath)(entry.file, context.config.projectRoot), context.workspaceConfig.workspaceRoot);
54
- }) : [(0, __stryke_path_join_paths.joinPaths)(context.workspaceConfig.workspaceRoot, context.config.sourceRoot, "**/*.ts"), (0, __stryke_path_join_paths.joinPaths)(context.workspaceConfig.workspaceRoot, context.config.sourceRoot, "**/*.tsx")],
55
- alias: context.builtins.reduce((ret, id) => {
56
- const path = context.fs.ids[id];
57
- if (path) ret[id] = path;
58
- return ret;
59
- }, context.config.build.alias ?? {}),
60
- noExternal: context.builtins
61
- }, context.config.build.variant === "tsdown" ? context.config.build.override : {}, context.config.build.variant === "tsdown" ? (0, __stryke_helpers_omit.omit)(context.config.build, ["override", "variant"]) : {}, {
62
- name: context.config.name,
63
- cwd: (0, __stryke_path_append.appendPath)(context.config.projectRoot, context.workspaceConfig.workspaceRoot),
64
- dts: {
65
- parallel: true,
66
- newContext: true,
67
- cwd: (0, __stryke_path_append.appendPath)(context.config.projectRoot, context.workspaceConfig.workspaceRoot),
68
- tsconfig: (0, __stryke_path_append.appendPath)(context.tsconfig.tsconfigFilePath, context.workspaceConfig.workspaceRoot),
69
- sourcemap: context.config.mode === "development"
70
- },
71
- resolve: { alias: context.builtins.reduce((ret, id) => {
72
- const path = context.fs.ids[id];
73
- if (path) ret[id] = path;
74
- return ret;
75
- }, context.config.build.alias ?? {}) },
76
- outDir: (0, __stryke_path_append.appendPath)(context.config.output.buildPath, context.workspaceConfig.workspaceRoot),
77
- tsconfig: (0, __stryke_path_append.appendPath)(context.tsconfig.tsconfigFilePath, context.workspaceConfig.workspaceRoot),
78
- format: resolveTsdownFormat(context.config.output.format).filter(Boolean),
79
- mode: context.config.mode,
80
- treeshake: context.config.build.variant === "tsdown" ? context.config.build?.treeshake : context.config.build.variant === "tsup" ? context.config.build?.treeshake : context.config.build.variant === "esbuild" ? context.config.build?.treeShaking : void 0,
81
- minify: context.config.mode === "production",
82
- metafile: context.config.mode === "development",
83
- sourcemap: context.config.mode === "development",
84
- debug: context.config.mode === "development",
85
- silent: context.config.logLevel === null || context.config.mode === "production",
86
- logLevel: context.config.logLevel === "trace" ? "debug" : context.config.logLevel,
87
- customLogger: {
88
- level: context.config.logLevel === "trace" ? "debug" : context.config.logLevel,
89
- info: (...msgs) => (0, __stryke_type_checks_is_set_string.isSetString)(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.info(formatMessage(context, ...msgs)),
90
- warn: (...msgs) => (0, __stryke_type_checks_is_set_string.isSetString)(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.warn(formatMessage(context, ...msgs)),
91
- warnOnce: (...msgs) => (0, __stryke_type_checks_is_set_string.isSetString)(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.warn(formatMessage(context, ...msgs)),
92
- error: (...msgs) => (0, __stryke_type_checks_is_set_string.isSetString)(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.error(formatMessage(context, ...msgs)),
93
- success: (...msgs) => (0, __stryke_type_checks_is_set_string.isSetString)(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.info(formatMessage(context, ...msgs))
94
- }
95
- }, DEFAULT_TSDOWN_CONFIG);
96
- }
97
-
98
- //#endregion
99
11
  //#region src/index.ts
100
12
  /**
101
13
  * A Powerlines plugin to use Tsdown to build the project.
@@ -116,14 +28,14 @@ const plugin = (options = {}) => {
116
28
  async build() {
117
29
  await (0, tsdown.build)((0, defu.default)({
118
30
  config: false,
119
- plugins: [require_unplugin.createTsdownPlugin(this)]
120
- }, extractTsdownConfig(this)));
31
+ plugins: [require_helpers_unplugin.createTsdownPlugin(this)]
32
+ }, require_tsdown.extractTsdownConfig(this)));
121
33
  }
122
34
  };
123
35
  };
124
36
  var src_default = plugin;
125
37
 
126
38
  //#endregion
127
- exports.createTsdownPlugin = require_unplugin.createTsdownPlugin;
39
+ exports.createTsdownPlugin = require_helpers_unplugin.createTsdownPlugin;
128
40
  exports.default = src_default;
129
41
  exports.plugin = plugin;
package/dist/index.d.cts CHANGED
@@ -1,7 +1,6 @@
1
- import { a as __ΩTsdownPluginContext, c as __ΩTsdownPluginUserConfig, i as TsdownPluginUserConfig, l as Plugin, n as TsdownPluginOptions, o as __ΩTsdownPluginOptions, r as TsdownPluginResolvedConfig, s as __ΩTsdownPluginResolvedConfig, t as TsdownPluginContext } from "./plugin-Dw2Yyxv8.cjs";
2
- import { t as createTsdownPlugin } from "./unplugin-BFA4Wki8.cjs";
3
- import "./index-D6CnpA_r.cjs";
4
- import "./index-D4ELpJXS.cjs";
1
+ import { Plugin } from "./powerlines/src/types/plugin.cjs";
2
+ import { TsdownPluginContext, TsdownPluginOptions, TsdownPluginResolvedConfig, TsdownPluginUserConfig, __ΩTsdownPluginContext, __ΩTsdownPluginOptions, __ΩTsdownPluginResolvedConfig, __ΩTsdownPluginUserConfig } from "./types/plugin.cjs";
3
+ import { createTsdownPlugin } from "./helpers/unplugin.cjs";
5
4
 
6
5
  //#region src/index.d.ts
7
6
 
package/dist/index.d.mts CHANGED
@@ -1,10 +1,10 @@
1
- import { a as __ΩTsdownPluginContext, c as __ΩTsdownPluginUserConfig, i as TsdownPluginUserConfig, l as Plugin, n as TsdownPluginOptions, o as __ΩTsdownPluginOptions, r as TsdownPluginResolvedConfig, s as __ΩTsdownPluginResolvedConfig, t as TsdownPluginContext } from "./plugin-Bon2U6FJ.mjs";
2
- import { t as createTsdownPlugin } from "./unplugin-DkLP9w8V.mjs";
3
- import "./index-DL0uimUT.mjs";
4
- import "./index-9iG2qHLe.mjs";
1
+ import { Plugin } from "./powerlines/src/types/plugin.mjs";
2
+ import { TsdownPluginContext, TsdownPluginOptions, TsdownPluginResolvedConfig, TsdownPluginUserConfig, __ΩTsdownPluginContext, __ΩTsdownPluginOptions, __ΩTsdownPluginResolvedConfig, __ΩTsdownPluginUserConfig } from "./types/plugin.mjs";
3
+ import { createTsdownPlugin } from "./helpers/unplugin.mjs";
4
+ import "./helpers/index.mjs";
5
+ import "./types/index.mjs";
5
6
 
6
7
  //#region src/index.d.ts
7
-
8
8
  /**
9
9
  * A Powerlines plugin to use Tsdown to build the project.
10
10
  */
package/dist/index.mjs CHANGED
@@ -1,99 +1,10 @@
1
- import { t as createTsdownPlugin } from "./unplugin-DXS3Sohh.mjs";
2
- import "./helpers-B15z10jN.mjs";
3
- import "./plugin-ifZVa20V.mjs";
4
- import "./types-U3zd8PTP.mjs";
1
+ import { extractTsdownConfig } from "./powerlines/src/lib/build/tsdown.mjs";
2
+ import { createTsdownPlugin } from "./helpers/unplugin.mjs";
3
+ import "./helpers/index.mjs";
5
4
  import { LogLevelLabel } from "@storm-software/config-tools/types";
6
5
  import defu$1 from "defu";
7
- import { toArray } from "@stryke/convert/to-array";
8
- import { omit } from "@stryke/helpers/omit";
9
- import { appendPath } from "@stryke/path/append";
10
- import { joinPaths } from "@stryke/path/join-paths";
11
- import { isSetString } from "@stryke/type-checks/is-set-string";
12
6
  import { build } from "tsdown";
13
7
 
14
- //#region ../powerlines/src/lib/build/tsdown.ts
15
- const DEFAULT_TSDOWN_CONFIG = {
16
- platform: "neutral",
17
- target: "esnext",
18
- cjsDefault: true,
19
- unbundle: true,
20
- shims: true,
21
- fixedExtension: true,
22
- nodeProtocol: true,
23
- clean: false
24
- };
25
- /**
26
- * Resolves the entry options for [tsdown](https://github.com/rolldown/tsdown).
27
- *
28
- * @param formats - The formats to resolve.
29
- * @returns The resolved entry options.
30
- */
31
- function resolveTsdownFormat(formats) {
32
- return toArray(formats).map((format) => {
33
- switch (format) {
34
- case "cjs": return "cjs";
35
- case "iife": return "iife";
36
- case "esm":
37
- default: return "esm";
38
- }
39
- });
40
- }
41
- const formatMessage = (context, ...msgs) => msgs.filter(Boolean).join(" ").replace(new RegExp(`\\[${context.config.name}\\]`, "g"), "").trim();
42
- /**
43
- * Resolves the options for [tsdown](https://github.com/rolldown/tsdown).
44
- *
45
- * @param context - The build context.
46
- * @returns The resolved options.
47
- */
48
- function extractTsdownConfig(context) {
49
- return defu$1({
50
- entry: context.entry.length > 0 ? context.entry.filter(Boolean).map((entry) => {
51
- return appendPath(appendPath(entry.file, context.config.projectRoot), context.workspaceConfig.workspaceRoot);
52
- }) : [joinPaths(context.workspaceConfig.workspaceRoot, context.config.sourceRoot, "**/*.ts"), joinPaths(context.workspaceConfig.workspaceRoot, context.config.sourceRoot, "**/*.tsx")],
53
- alias: context.builtins.reduce((ret, id) => {
54
- const path = context.fs.ids[id];
55
- if (path) ret[id] = path;
56
- return ret;
57
- }, context.config.build.alias ?? {}),
58
- noExternal: context.builtins
59
- }, context.config.build.variant === "tsdown" ? context.config.build.override : {}, context.config.build.variant === "tsdown" ? omit(context.config.build, ["override", "variant"]) : {}, {
60
- name: context.config.name,
61
- cwd: appendPath(context.config.projectRoot, context.workspaceConfig.workspaceRoot),
62
- dts: {
63
- parallel: true,
64
- newContext: true,
65
- cwd: appendPath(context.config.projectRoot, context.workspaceConfig.workspaceRoot),
66
- tsconfig: appendPath(context.tsconfig.tsconfigFilePath, context.workspaceConfig.workspaceRoot),
67
- sourcemap: context.config.mode === "development"
68
- },
69
- resolve: { alias: context.builtins.reduce((ret, id) => {
70
- const path = context.fs.ids[id];
71
- if (path) ret[id] = path;
72
- return ret;
73
- }, context.config.build.alias ?? {}) },
74
- outDir: appendPath(context.config.output.buildPath, context.workspaceConfig.workspaceRoot),
75
- tsconfig: appendPath(context.tsconfig.tsconfigFilePath, context.workspaceConfig.workspaceRoot),
76
- format: resolveTsdownFormat(context.config.output.format).filter(Boolean),
77
- mode: context.config.mode,
78
- treeshake: context.config.build.variant === "tsdown" ? context.config.build?.treeshake : context.config.build.variant === "tsup" ? context.config.build?.treeshake : context.config.build.variant === "esbuild" ? context.config.build?.treeShaking : void 0,
79
- minify: context.config.mode === "production",
80
- metafile: context.config.mode === "development",
81
- sourcemap: context.config.mode === "development",
82
- debug: context.config.mode === "development",
83
- silent: context.config.logLevel === null || context.config.mode === "production",
84
- logLevel: context.config.logLevel === "trace" ? "debug" : context.config.logLevel,
85
- customLogger: {
86
- level: context.config.logLevel === "trace" ? "debug" : context.config.logLevel,
87
- info: (...msgs) => isSetString(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.info(formatMessage(context, ...msgs)),
88
- warn: (...msgs) => isSetString(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.warn(formatMessage(context, ...msgs)),
89
- warnOnce: (...msgs) => isSetString(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.warn(formatMessage(context, ...msgs)),
90
- error: (...msgs) => isSetString(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.error(formatMessage(context, ...msgs)),
91
- success: (...msgs) => isSetString(formatMessage(context, ...msgs).replace(/\s+/g, "")) && context.info(formatMessage(context, ...msgs))
92
- }
93
- }, DEFAULT_TSDOWN_CONFIG);
94
- }
95
-
96
- //#endregion
97
8
  //#region src/index.ts
98
9
  /**
99
10
  * A Powerlines plugin to use Tsdown to build the project.
@@ -0,0 +1,226 @@
1
+ const require_rolldown_runtime = require('../../_virtual/rolldown_runtime.cjs');
2
+ let __stryke_capnp = require("@stryke/capnp");
3
+ __stryke_capnp = require_rolldown_runtime.__toESM(__stryke_capnp);
4
+
5
+ //#region ../powerlines/schemas/fs.ts
6
+ var FileMetadata_KeyValuePair = class extends __stryke_capnp.Struct {
7
+ static _capnp = {
8
+ displayName: "KeyValuePair",
9
+ id: "eabb26cf58b2a14c",
10
+ size: new __stryke_capnp.ObjectSize(0, 2)
11
+ };
12
+ get key() {
13
+ return __stryke_capnp.utils.getText(0, this);
14
+ }
15
+ set key(value) {
16
+ __stryke_capnp.utils.setText(0, value, this);
17
+ }
18
+ get value() {
19
+ return __stryke_capnp.utils.getText(1, this);
20
+ }
21
+ set value(value) {
22
+ __stryke_capnp.utils.setText(1, value, this);
23
+ }
24
+ toString() {
25
+ return "FileMetadata_KeyValuePair_" + super.toString();
26
+ }
27
+ };
28
+ /**
29
+ * The identifier for the file data.
30
+ *
31
+ */
32
+ var FileMetadata = class FileMetadata extends __stryke_capnp.Struct {
33
+ static KeyValuePair = FileMetadata_KeyValuePair;
34
+ static _capnp = {
35
+ displayName: "FileMetadata",
36
+ id: "8e2cab5d7e28c7b3",
37
+ size: new __stryke_capnp.ObjectSize(8, 3),
38
+ defaultType: "normal"
39
+ };
40
+ static _Properties;
41
+ /**
42
+ * The type of the file.
43
+ *
44
+ */
45
+ get id() {
46
+ return __stryke_capnp.utils.getText(0, this);
47
+ }
48
+ set id(value) {
49
+ __stryke_capnp.utils.setText(0, value, this);
50
+ }
51
+ /**
52
+ * The timestamp representing the file's creation date.
53
+ *
54
+ */
55
+ get type() {
56
+ return __stryke_capnp.utils.getText(1, this, FileMetadata._capnp.defaultType);
57
+ }
58
+ set type(value) {
59
+ __stryke_capnp.utils.setText(1, value, this);
60
+ }
61
+ /**
62
+ * Additional metadata associated with the file.
63
+ *
64
+ */
65
+ get timestamp() {
66
+ return __stryke_capnp.utils.getUint32(0, this);
67
+ }
68
+ set timestamp(value) {
69
+ __stryke_capnp.utils.setUint32(0, value, this);
70
+ }
71
+ _adoptProperties(value) {
72
+ __stryke_capnp.utils.adopt(value, __stryke_capnp.utils.getPointer(2, this));
73
+ }
74
+ _disownProperties() {
75
+ return __stryke_capnp.utils.disown(this.properties);
76
+ }
77
+ get properties() {
78
+ return __stryke_capnp.utils.getList(2, FileMetadata._Properties, this);
79
+ }
80
+ _hasProperties() {
81
+ return !__stryke_capnp.utils.isNull(__stryke_capnp.utils.getPointer(2, this));
82
+ }
83
+ _initProperties(length) {
84
+ return __stryke_capnp.utils.initList(2, FileMetadata._Properties, length, this);
85
+ }
86
+ set properties(value) {
87
+ __stryke_capnp.utils.copyFrom(value, __stryke_capnp.utils.getPointer(2, this));
88
+ }
89
+ toString() {
90
+ return "FileMetadata_" + super.toString();
91
+ }
92
+ };
93
+ /**
94
+ * An identifier for the file.
95
+ *
96
+ */
97
+ var FileId = class extends __stryke_capnp.Struct {
98
+ static _capnp = {
99
+ displayName: "FileId",
100
+ id: "990d6a471072f997",
101
+ size: new __stryke_capnp.ObjectSize(0, 2)
102
+ };
103
+ /**
104
+ * A virtual (or actual) path to the file in the file system.
105
+ *
106
+ */
107
+ get id() {
108
+ return __stryke_capnp.utils.getText(0, this);
109
+ }
110
+ set id(value) {
111
+ __stryke_capnp.utils.setText(0, value, this);
112
+ }
113
+ get path() {
114
+ return __stryke_capnp.utils.getText(1, this);
115
+ }
116
+ set path(value) {
117
+ __stryke_capnp.utils.setText(1, value, this);
118
+ }
119
+ toString() {
120
+ return "FileId_" + super.toString();
121
+ }
122
+ };
123
+ /**
124
+ * An identifier for the file.
125
+ *
126
+ */
127
+ var FileStorage = class extends __stryke_capnp.Struct {
128
+ static _capnp = {
129
+ displayName: "FileStorage",
130
+ id: "9dca66ac858c9ebe",
131
+ size: new __stryke_capnp.ObjectSize(0, 2)
132
+ };
133
+ /**
134
+ * A virtual (or actual) path to the file in the file system.
135
+ *
136
+ */
137
+ get path() {
138
+ return __stryke_capnp.utils.getText(0, this);
139
+ }
140
+ set path(value) {
141
+ __stryke_capnp.utils.setText(0, value, this);
142
+ }
143
+ get code() {
144
+ return __stryke_capnp.utils.getText(1, this);
145
+ }
146
+ set code(value) {
147
+ __stryke_capnp.utils.setText(1, value, this);
148
+ }
149
+ toString() {
150
+ return "FileStorage_" + super.toString();
151
+ }
152
+ };
153
+ var FileSystem = class FileSystem extends __stryke_capnp.Struct {
154
+ static _capnp = {
155
+ displayName: "FileSystem",
156
+ id: "ae0c23d43e56abcf",
157
+ size: new __stryke_capnp.ObjectSize(0, 3)
158
+ };
159
+ static _Ids;
160
+ static _Storage;
161
+ static _Metadata;
162
+ _adoptIds(value) {
163
+ __stryke_capnp.utils.adopt(value, __stryke_capnp.utils.getPointer(0, this));
164
+ }
165
+ _disownIds() {
166
+ return __stryke_capnp.utils.disown(this.ids);
167
+ }
168
+ get ids() {
169
+ return __stryke_capnp.utils.getList(0, FileSystem._Ids, this);
170
+ }
171
+ _hasIds() {
172
+ return !__stryke_capnp.utils.isNull(__stryke_capnp.utils.getPointer(0, this));
173
+ }
174
+ _initIds(length) {
175
+ return __stryke_capnp.utils.initList(0, FileSystem._Ids, length, this);
176
+ }
177
+ set ids(value) {
178
+ __stryke_capnp.utils.copyFrom(value, __stryke_capnp.utils.getPointer(0, this));
179
+ }
180
+ _adoptStorage(value) {
181
+ __stryke_capnp.utils.adopt(value, __stryke_capnp.utils.getPointer(1, this));
182
+ }
183
+ _disownStorage() {
184
+ return __stryke_capnp.utils.disown(this.storage);
185
+ }
186
+ get storage() {
187
+ return __stryke_capnp.utils.getList(1, FileSystem._Storage, this);
188
+ }
189
+ _hasStorage() {
190
+ return !__stryke_capnp.utils.isNull(__stryke_capnp.utils.getPointer(1, this));
191
+ }
192
+ _initStorage(length) {
193
+ return __stryke_capnp.utils.initList(1, FileSystem._Storage, length, this);
194
+ }
195
+ set storage(value) {
196
+ __stryke_capnp.utils.copyFrom(value, __stryke_capnp.utils.getPointer(1, this));
197
+ }
198
+ _adoptMetadata(value) {
199
+ __stryke_capnp.utils.adopt(value, __stryke_capnp.utils.getPointer(2, this));
200
+ }
201
+ _disownMetadata() {
202
+ return __stryke_capnp.utils.disown(this.metadata);
203
+ }
204
+ get metadata() {
205
+ return __stryke_capnp.utils.getList(2, FileSystem._Metadata, this);
206
+ }
207
+ _hasMetadata() {
208
+ return !__stryke_capnp.utils.isNull(__stryke_capnp.utils.getPointer(2, this));
209
+ }
210
+ _initMetadata(length) {
211
+ return __stryke_capnp.utils.initList(2, FileSystem._Metadata, length, this);
212
+ }
213
+ set metadata(value) {
214
+ __stryke_capnp.utils.copyFrom(value, __stryke_capnp.utils.getPointer(2, this));
215
+ }
216
+ toString() {
217
+ return "FileSystem_" + super.toString();
218
+ }
219
+ };
220
+ FileMetadata._Properties = __stryke_capnp.CompositeList(FileMetadata_KeyValuePair);
221
+ FileSystem._Ids = __stryke_capnp.CompositeList(FileId);
222
+ FileSystem._Storage = __stryke_capnp.CompositeList(FileStorage);
223
+ FileSystem._Metadata = __stryke_capnp.CompositeList(FileMetadata);
224
+
225
+ //#endregion
226
+ exports.FileSystem = FileSystem;