@powerlines/plugin-esbuild 0.13.131 → 0.13.133
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/_virtual/rolldown_runtime.cjs +29 -0
- package/dist/helpers/index.cjs +2 -3
- package/dist/helpers/index.d.cts +1 -3
- package/dist/helpers/index.d.mts +1 -3
- package/dist/helpers/index.mjs +1 -2
- package/dist/helpers/unplugin.cjs +11 -2
- package/dist/helpers/unplugin.d.cts +6 -2
- package/dist/helpers/unplugin.d.mts +6 -2
- package/dist/helpers/unplugin.mjs +9 -1
- package/dist/index.cjs +10 -120
- package/dist/index.d.cts +3 -4
- package/dist/index.d.mts +5 -5
- package/dist/index.mjs +3 -114
- package/dist/powerlines/schemas/fs.cjs +226 -0
- package/dist/powerlines/schemas/fs.mjs +224 -0
- package/dist/powerlines/src/api.cjs +580 -0
- package/dist/powerlines/src/api.mjs +578 -0
- package/dist/powerlines/src/internal/babel/module-resolver-plugin.cjs +86 -0
- package/dist/powerlines/src/internal/babel/module-resolver-plugin.mjs +84 -0
- package/dist/powerlines/src/internal/helpers/environment.cjs +52 -0
- package/dist/powerlines/src/internal/helpers/environment.mjs +48 -0
- package/dist/powerlines/src/internal/helpers/generate-types.cjs +51 -0
- package/dist/powerlines/src/internal/helpers/generate-types.mjs +49 -0
- package/dist/powerlines/src/internal/helpers/hooks.cjs +63 -0
- package/dist/powerlines/src/internal/helpers/hooks.mjs +61 -0
- package/dist/powerlines/src/internal/helpers/install-dependencies.cjs +25 -0
- package/dist/powerlines/src/internal/helpers/install-dependencies.mjs +24 -0
- package/dist/powerlines/src/internal/helpers/install.cjs +37 -0
- package/dist/powerlines/src/internal/helpers/install.mjs +36 -0
- package/dist/powerlines/src/internal/helpers/resolve-tsconfig.cjs +98 -0
- package/dist/powerlines/src/internal/helpers/resolve-tsconfig.mjs +94 -0
- package/dist/powerlines/src/internal/helpers/resolver.cjs +43 -0
- package/dist/powerlines/src/internal/helpers/resolver.mjs +41 -0
- package/dist/powerlines/src/lib/build/esbuild.cjs +118 -0
- package/dist/powerlines/src/lib/build/esbuild.mjs +114 -0
- package/dist/powerlines/src/lib/config-file.cjs +79 -0
- package/dist/powerlines/src/lib/config-file.mjs +76 -0
- package/dist/powerlines/src/lib/contexts/api-context.cjs +184 -0
- package/dist/powerlines/src/lib/contexts/api-context.mjs +182 -0
- package/dist/powerlines/src/lib/contexts/context.cjs +933 -0
- package/dist/powerlines/src/lib/contexts/context.mjs +931 -0
- package/dist/powerlines/src/lib/contexts/environment-context.cjs +160 -0
- package/dist/powerlines/src/lib/contexts/environment-context.mjs +159 -0
- package/dist/powerlines/src/lib/contexts/plugin-context.cjs +75 -0
- package/dist/powerlines/src/lib/contexts/plugin-context.mjs +74 -0
- package/dist/powerlines/src/lib/entry.cjs +71 -0
- package/dist/powerlines/src/lib/entry.mjs +67 -0
- package/dist/powerlines/src/lib/fs/helpers.cjs +85 -0
- package/dist/powerlines/src/lib/fs/helpers.mjs +81 -0
- package/dist/powerlines/src/lib/fs/storage/base.cjs +196 -0
- package/dist/powerlines/src/lib/fs/storage/base.mjs +195 -0
- package/dist/powerlines/src/lib/fs/storage/file-system.cjs +170 -0
- package/dist/powerlines/src/lib/fs/storage/file-system.mjs +169 -0
- package/dist/powerlines/src/lib/fs/storage/virtual.cjs +88 -0
- package/dist/powerlines/src/lib/fs/storage/virtual.mjs +87 -0
- package/dist/powerlines/src/lib/fs/vfs.cjs +830 -0
- package/dist/powerlines/src/lib/fs/vfs.mjs +828 -0
- package/dist/powerlines/src/lib/logger.cjs +58 -0
- package/dist/powerlines/src/lib/logger.mjs +55 -0
- package/dist/powerlines/src/lib/typescript/ts-morph.cjs +104 -0
- package/dist/powerlines/src/lib/typescript/ts-morph.mjs +102 -0
- package/dist/powerlines/src/lib/typescript/tsconfig.cjs +149 -0
- package/dist/powerlines/src/lib/typescript/tsconfig.mjs +144 -0
- package/dist/powerlines/src/lib/unplugin/factory.cjs +6 -0
- package/dist/powerlines/src/lib/unplugin/factory.mjs +8 -0
- package/dist/powerlines/src/lib/unplugin/helpers.cjs +17 -0
- package/dist/powerlines/src/lib/unplugin/helpers.mjs +16 -0
- package/dist/powerlines/src/lib/unplugin/index.cjs +3 -0
- package/dist/powerlines/src/lib/unplugin/index.mjs +5 -0
- package/dist/powerlines/src/lib/unplugin/plugin.cjs +128 -0
- package/dist/powerlines/src/lib/unplugin/plugin.mjs +127 -0
- package/dist/powerlines/src/lib/utilities/file-header.cjs +22 -0
- package/dist/powerlines/src/lib/utilities/file-header.mjs +21 -0
- package/dist/powerlines/src/lib/utilities/meta.cjs +45 -0
- package/dist/powerlines/src/lib/utilities/meta.mjs +41 -0
- package/dist/powerlines/src/lib/utilities/source-file.cjs +22 -0
- package/dist/powerlines/src/lib/utilities/source-file.mjs +21 -0
- package/dist/powerlines/src/plugin-utils/helpers.cjs +148 -0
- package/dist/powerlines/src/plugin-utils/helpers.mjs +138 -0
- package/dist/powerlines/src/plugin-utils/paths.cjs +36 -0
- package/dist/powerlines/src/plugin-utils/paths.mjs +35 -0
- package/dist/powerlines/src/types/babel.d.mts +4 -0
- package/dist/powerlines/src/types/build.cjs +15 -0
- package/dist/powerlines/src/types/build.d.cts +149 -0
- package/dist/powerlines/src/types/build.d.mts +149 -0
- package/dist/powerlines/src/types/build.mjs +14 -0
- package/dist/powerlines/src/types/commands.cjs +16 -0
- package/dist/powerlines/src/types/commands.d.cts +8 -0
- package/dist/powerlines/src/types/commands.d.mts +9 -0
- package/dist/powerlines/src/types/commands.mjs +15 -0
- package/dist/powerlines/src/types/config.d.cts +377 -0
- package/dist/powerlines/src/types/config.d.mts +379 -0
- package/dist/powerlines/src/types/context.d.cts +403 -0
- package/dist/powerlines/src/types/context.d.mts +405 -0
- package/dist/powerlines/src/types/fs.d.cts +486 -0
- package/dist/powerlines/src/types/fs.d.mts +486 -0
- package/dist/powerlines/src/types/hooks.d.mts +2 -0
- package/dist/powerlines/src/types/plugin.cjs +32 -0
- package/dist/powerlines/src/types/plugin.d.cts +231 -0
- package/dist/powerlines/src/types/plugin.d.mts +231 -0
- package/dist/powerlines/src/types/plugin.mjs +31 -0
- package/dist/powerlines/src/types/resolved.d.cts +82 -0
- package/dist/powerlines/src/types/resolved.d.mts +83 -0
- package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
- package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
- package/dist/types/index.cjs +0 -2
- package/dist/types/index.d.cts +1 -2
- package/dist/types/index.d.mts +1 -2
- package/dist/types/index.mjs +0 -3
- package/dist/types/plugin.cjs +0 -1
- package/dist/types/plugin.d.cts +12 -1
- package/dist/types/plugin.d.mts +12 -1
- package/dist/types/plugin.mjs +0 -2
- package/package.json +5 -5
- package/dist/helpers-B15z10jN.mjs +0 -1
- package/dist/helpers-LF26RHol.cjs +0 -0
- package/dist/index-9iG2qHLe.d.mts +0 -1
- package/dist/index-D4ELpJXS.d.cts +0 -1
- package/dist/index-D6CnpA_r.d.cts +0 -1
- package/dist/index-DL0uimUT.d.mts +0 -1
- package/dist/plugin-22mS98Z7.d.mts +0 -1765
- package/dist/plugin-DClEUVBW.d.cts +0 -1762
- package/dist/plugin-ifZVa20V.mjs +0 -1
- package/dist/plugin-pBKbb5K9.cjs +0 -0
- package/dist/types-U3zd8PTP.mjs +0 -1
- package/dist/types-o3zWarRp.cjs +0 -0
- package/dist/unplugin-CAREou6Y.cjs +0 -4671
- package/dist/unplugin-DMEUFyts.d.cts +0 -7
- package/dist/unplugin-DgwnB-az.mjs +0 -4615
- package/dist/unplugin-Ke8_-tqb.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;
|
package/dist/helpers/index.cjs
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
const
|
|
2
|
-
require('../helpers-LF26RHol.cjs');
|
|
1
|
+
const require_helpers_unplugin = require('./unplugin.cjs');
|
|
3
2
|
|
|
4
|
-
exports.createESBuildPlugin =
|
|
3
|
+
exports.createESBuildPlugin = require_helpers_unplugin.createESBuildPlugin;
|
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.mts
CHANGED
package/dist/helpers/index.mjs
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
-
const
|
|
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
|
-
|
|
6
|
+
//#region src/helpers/unplugin.ts
|
|
7
|
+
function createESBuildPlugin(context) {
|
|
8
|
+
return (0, unplugin.createEsbuildPlugin)(require_plugin.createUnplugin(context))({});
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
exports.createESBuildPlugin = createESBuildPlugin;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
import "../plugin
|
|
2
|
-
import
|
|
1
|
+
import { ESBuildPluginContext } from "../types/plugin.cjs";
|
|
2
|
+
import * as esbuild0 from "esbuild";
|
|
3
|
+
|
|
4
|
+
//#region src/helpers/unplugin.d.ts
|
|
5
|
+
declare function createESBuildPlugin(context: ESBuildPluginContext): esbuild0.Plugin;
|
|
6
|
+
//#endregion
|
|
3
7
|
export { createESBuildPlugin };
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
import "../plugin
|
|
2
|
-
import
|
|
1
|
+
import { ESBuildPluginContext } from "../types/plugin.mjs";
|
|
2
|
+
import * as esbuild0 from "esbuild";
|
|
3
|
+
|
|
4
|
+
//#region src/helpers/unplugin.d.ts
|
|
5
|
+
declare function createESBuildPlugin(context: ESBuildPluginContext): esbuild0.Plugin;
|
|
6
|
+
//#endregion
|
|
3
7
|
export { createESBuildPlugin };
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createUnplugin } from "../powerlines/src/lib/unplugin/plugin.mjs";
|
|
2
|
+
import "../powerlines/src/lib/unplugin/index.mjs";
|
|
3
|
+
import { createEsbuildPlugin } from "unplugin";
|
|
2
4
|
|
|
5
|
+
//#region src/helpers/unplugin.ts
|
|
6
|
+
function createESBuildPlugin(context) {
|
|
7
|
+
return createEsbuildPlugin(createUnplugin(context))({});
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
3
11
|
export { createESBuildPlugin };
|
package/dist/index.cjs
CHANGED
|
@@ -1,122 +1,12 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
-
const
|
|
3
|
-
require('./
|
|
4
|
-
require('./
|
|
5
|
-
require('./
|
|
2
|
+
const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
|
|
3
|
+
const require_esbuild = require('./powerlines/src/lib/build/esbuild.cjs');
|
|
4
|
+
const require_helpers_unplugin = require('./helpers/unplugin.cjs');
|
|
5
|
+
require('./helpers/index.cjs');
|
|
6
6
|
let defu = require("defu");
|
|
7
|
-
defu =
|
|
7
|
+
defu = require_rolldown_runtime.__toESM(defu);
|
|
8
8
|
let esbuild = require("esbuild");
|
|
9
|
-
let __stryke_helpers_omit = require("@stryke/helpers/omit");
|
|
10
|
-
let __stryke_path_join_paths = require("@stryke/path/join-paths");
|
|
11
|
-
let __stryke_path_replace = require("@stryke/path/replace");
|
|
12
|
-
let __stryke_string_format_camel_case = require("@stryke/string-format/camel-case");
|
|
13
|
-
let __stryke_type_checks_is_string = require("@stryke/type-checks/is-string");
|
|
14
9
|
|
|
15
|
-
//#region ../powerlines/src/lib/build/esbuild.ts
|
|
16
|
-
const DEFAULT_ESBUILD_CONFIG = {
|
|
17
|
-
target: "esnext",
|
|
18
|
-
platform: "neutral",
|
|
19
|
-
format: "esm",
|
|
20
|
-
write: true,
|
|
21
|
-
minify: true,
|
|
22
|
-
sourcemap: false,
|
|
23
|
-
bundle: true,
|
|
24
|
-
treeShaking: true,
|
|
25
|
-
keepNames: true,
|
|
26
|
-
splitting: true,
|
|
27
|
-
logLevel: "silent"
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Resolves the entry options for esbuild.
|
|
31
|
-
*
|
|
32
|
-
* @param context - The build context.
|
|
33
|
-
* @param entryPoints - The entry points to resolve.
|
|
34
|
-
* @returns The resolved entry options.
|
|
35
|
-
*/
|
|
36
|
-
function resolveESBuildEntry(context, entryPoints = []) {
|
|
37
|
-
return entryPoints.reduce((ret, entry) => {
|
|
38
|
-
if ((0, __stryke_type_checks_is_string.isString)(entry)) ret[(0, __stryke_path_replace.replaceExtension)((0, __stryke_path_replace.replacePath)(entry, context.config.sourceRoot || context.config.projectRoot))] = (0, __stryke_path_replace.replacePath)(entry, context.config.sourceRoot || context.config.projectRoot);
|
|
39
|
-
else ret[entry.output || require_unplugin.resolveEntryOutput(context, entry.input || entry)] = require_unplugin.resolveEntryInputFile(context, entry.input || entry);
|
|
40
|
-
return ret;
|
|
41
|
-
}, {});
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Resolves the esbuild options.
|
|
45
|
-
*
|
|
46
|
-
* @param context - The build context.
|
|
47
|
-
* @returns The resolved esbuild options.
|
|
48
|
-
*/
|
|
49
|
-
function extractESBuildConfig(context) {
|
|
50
|
-
const inject = context.config.build.override.inject ?? context.config.build.inject;
|
|
51
|
-
if (inject && Object.keys(inject).length > 0) context.fs.writeSync((0, __stryke_path_join_paths.joinPaths)(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js"), Object.entries(inject).map(([key, value]) => {
|
|
52
|
-
if (value) if (Array.isArray(value)) {
|
|
53
|
-
if ((0, __stryke_string_format_camel_case.camelCase)(key) !== key) {
|
|
54
|
-
if (value.length === 1) return `
|
|
55
|
-
import ${(0, __stryke_string_format_camel_case.camelCase)(key)} from "${value[0]}";
|
|
56
|
-
export { ${(0, __stryke_string_format_camel_case.camelCase)(key)} as "${key}" }`;
|
|
57
|
-
else if (value.length > 1) return `
|
|
58
|
-
import ${value[1] === "*" ? `* as ${(0, __stryke_string_format_camel_case.camelCase)(key)}` : `{ ${value[1]} as ${(0, __stryke_string_format_camel_case.camelCase)(key)} }`} from "${value[0]}";
|
|
59
|
-
export { ${(0, __stryke_string_format_camel_case.camelCase)(key)} as "${key}" }`;
|
|
60
|
-
} else if (value.length === 1) return `
|
|
61
|
-
import ${key} from "${value[0]}";
|
|
62
|
-
export { ${key} };`;
|
|
63
|
-
else if (value.length > 1) return `
|
|
64
|
-
import ${value[1] === "*" ? `* as ${key}` : `{ ${value[1]} as ${key} }`} from "${value[0]}";
|
|
65
|
-
export { ${key} };`;
|
|
66
|
-
} else if ((0, __stryke_string_format_camel_case.camelCase)(key) !== key) return `
|
|
67
|
-
import ${(0, __stryke_string_format_camel_case.camelCase)(key)} from "${value[0]}";
|
|
68
|
-
export { ${(0, __stryke_string_format_camel_case.camelCase)(key)} as "${key}" }`;
|
|
69
|
-
else return `
|
|
70
|
-
import ${key} from "${value}";
|
|
71
|
-
export { ${key} };`;
|
|
72
|
-
return "";
|
|
73
|
-
}).join("\n"));
|
|
74
|
-
return (0, defu.default)({
|
|
75
|
-
alias: context.builtins.reduce((ret, id) => {
|
|
76
|
-
if (!ret[id]) {
|
|
77
|
-
const path = context.fs.ids[id];
|
|
78
|
-
if (path) ret[id] = path;
|
|
79
|
-
}
|
|
80
|
-
return ret;
|
|
81
|
-
}, context.config.build.alias ? Array.isArray(context.config.build.alias) ? context.config.build.alias.reduce((ret, alias) => {
|
|
82
|
-
if (!ret[alias.find.toString()]) ret[alias.find.toString()] = alias.replacement;
|
|
83
|
-
return ret;
|
|
84
|
-
}, {}) : context.config.build.alias : {}),
|
|
85
|
-
inject: inject && Object.keys(inject).length > 0 ? [(0, __stryke_path_join_paths.joinPaths)(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js")] : void 0
|
|
86
|
-
}, context.config.build.variant === "esbuild" ? (0, __stryke_helpers_omit.omit)(context.config.build.override, [
|
|
87
|
-
"alias",
|
|
88
|
-
"inject",
|
|
89
|
-
"external",
|
|
90
|
-
"noExternal",
|
|
91
|
-
"skipNodeModulesBundle",
|
|
92
|
-
"extensions"
|
|
93
|
-
]) : {}, context.config.build.variant === "esbuild" ? (0, __stryke_helpers_omit.omit)(context.config.build, [
|
|
94
|
-
"alias",
|
|
95
|
-
"inject",
|
|
96
|
-
"external",
|
|
97
|
-
"noExternal",
|
|
98
|
-
"skipNodeModulesBundle",
|
|
99
|
-
"extensions",
|
|
100
|
-
"variant",
|
|
101
|
-
"override"
|
|
102
|
-
]) : {}, {
|
|
103
|
-
mainFields: context.config.build.mainFields,
|
|
104
|
-
conditions: context.config.build.conditions,
|
|
105
|
-
define: context.config.build.define,
|
|
106
|
-
resolveExtensions: context.config.build.extensions,
|
|
107
|
-
packages: context.config.build.skipNodeModulesBundle ? "external" : context.config.build.variant === "esbuild" ? context.config.build.packages : void 0,
|
|
108
|
-
format: Array.isArray(context.config.output.format) ? context.config.output.format[0] : context.config.output.format,
|
|
109
|
-
platform: context.config.build.platform,
|
|
110
|
-
treeShaking: Boolean(context.config.build?.treeshake) || context.config.build?.treeShaking,
|
|
111
|
-
outdir: context.config.output.buildPath,
|
|
112
|
-
tsconfig: context.tsconfig.tsconfigFilePath,
|
|
113
|
-
minify: context.config.mode !== "development",
|
|
114
|
-
metafile: context.config.mode === "development",
|
|
115
|
-
sourcemap: context.config.mode === "development"
|
|
116
|
-
}, DEFAULT_ESBUILD_CONFIG);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
//#endregion
|
|
120
10
|
//#region src/index.ts
|
|
121
11
|
/**
|
|
122
12
|
* A Powerlines plugin to assist in developing other Powerlines plugins.
|
|
@@ -128,7 +18,7 @@ const plugin = (options = {}) => {
|
|
|
128
18
|
return {
|
|
129
19
|
output: { format: ["esm"] },
|
|
130
20
|
build: {
|
|
131
|
-
...DEFAULT_ESBUILD_CONFIG,
|
|
21
|
+
...require_esbuild.DEFAULT_ESBUILD_CONFIG,
|
|
132
22
|
...options,
|
|
133
23
|
variant: "esbuild"
|
|
134
24
|
}
|
|
@@ -136,15 +26,15 @@ const plugin = (options = {}) => {
|
|
|
136
26
|
},
|
|
137
27
|
async build() {
|
|
138
28
|
await (0, esbuild.build)((0, defu.default)({
|
|
139
|
-
entryPoints: resolveESBuildEntry(this, this.entry),
|
|
140
|
-
plugins: [
|
|
141
|
-
}, extractESBuildConfig(this)));
|
|
29
|
+
entryPoints: require_esbuild.resolveESBuildEntry(this, this.entry),
|
|
30
|
+
plugins: [require_helpers_unplugin.createESBuildPlugin(this)]
|
|
31
|
+
}, require_esbuild.extractESBuildConfig(this)));
|
|
142
32
|
}
|
|
143
33
|
};
|
|
144
34
|
};
|
|
145
35
|
var src_default = plugin;
|
|
146
36
|
|
|
147
37
|
//#endregion
|
|
148
|
-
exports.createESBuildPlugin =
|
|
38
|
+
exports.createESBuildPlugin = require_helpers_unplugin.createESBuildPlugin;
|
|
149
39
|
exports.default = src_default;
|
|
150
40
|
exports.plugin = plugin;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import "./
|
|
4
|
-
import "./index-D4ELpJXS.cjs";
|
|
1
|
+
import { Plugin } from "./powerlines/src/types/plugin.cjs";
|
|
2
|
+
import { ESBuildPluginContext, ESBuildPluginOptions, ESBuildPluginResolvedConfig, __ΩESBuildPluginContext, __ΩESBuildPluginOptions, __ΩESBuildPluginResolvedConfig } from "./types/plugin.cjs";
|
|
3
|
+
import { createESBuildPlugin } 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 {
|
|
2
|
-
import {
|
|
3
|
-
import "./
|
|
4
|
-
import "./index
|
|
1
|
+
import { Plugin } from "./powerlines/src/types/plugin.mjs";
|
|
2
|
+
import { ESBuildPluginContext, ESBuildPluginOptions, ESBuildPluginResolvedConfig, __ΩESBuildPluginContext, __ΩESBuildPluginOptions, __ΩESBuildPluginResolvedConfig } from "./types/plugin.mjs";
|
|
3
|
+
import { createESBuildPlugin } 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 assist in developing other Powerlines plugins.
|
|
10
10
|
*/
|
package/dist/index.mjs
CHANGED
|
@@ -1,120 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import "./helpers
|
|
3
|
-
import "./
|
|
4
|
-
import "./types-U3zd8PTP.mjs";
|
|
1
|
+
import { DEFAULT_ESBUILD_CONFIG, extractESBuildConfig, resolveESBuildEntry } from "./powerlines/src/lib/build/esbuild.mjs";
|
|
2
|
+
import { createESBuildPlugin } from "./helpers/unplugin.mjs";
|
|
3
|
+
import "./helpers/index.mjs";
|
|
5
4
|
import defu$1 from "defu";
|
|
6
5
|
import { build } from "esbuild";
|
|
7
|
-
import { omit } from "@stryke/helpers/omit";
|
|
8
|
-
import { joinPaths } from "@stryke/path/join-paths";
|
|
9
|
-
import { replaceExtension, replacePath } from "@stryke/path/replace";
|
|
10
|
-
import { camelCase } from "@stryke/string-format/camel-case";
|
|
11
|
-
import { isString } from "@stryke/type-checks/is-string";
|
|
12
6
|
|
|
13
|
-
//#region ../powerlines/src/lib/build/esbuild.ts
|
|
14
|
-
const DEFAULT_ESBUILD_CONFIG = {
|
|
15
|
-
target: "esnext",
|
|
16
|
-
platform: "neutral",
|
|
17
|
-
format: "esm",
|
|
18
|
-
write: true,
|
|
19
|
-
minify: true,
|
|
20
|
-
sourcemap: false,
|
|
21
|
-
bundle: true,
|
|
22
|
-
treeShaking: true,
|
|
23
|
-
keepNames: true,
|
|
24
|
-
splitting: true,
|
|
25
|
-
logLevel: "silent"
|
|
26
|
-
};
|
|
27
|
-
/**
|
|
28
|
-
* Resolves the entry options for esbuild.
|
|
29
|
-
*
|
|
30
|
-
* @param context - The build context.
|
|
31
|
-
* @param entryPoints - The entry points to resolve.
|
|
32
|
-
* @returns The resolved entry options.
|
|
33
|
-
*/
|
|
34
|
-
function resolveESBuildEntry(context, entryPoints = []) {
|
|
35
|
-
return entryPoints.reduce((ret, entry) => {
|
|
36
|
-
if (isString(entry)) ret[replaceExtension(replacePath(entry, context.config.sourceRoot || context.config.projectRoot))] = replacePath(entry, context.config.sourceRoot || context.config.projectRoot);
|
|
37
|
-
else ret[entry.output || resolveEntryOutput(context, entry.input || entry)] = resolveEntryInputFile(context, entry.input || entry);
|
|
38
|
-
return ret;
|
|
39
|
-
}, {});
|
|
40
|
-
}
|
|
41
|
-
/**
|
|
42
|
-
* Resolves the esbuild options.
|
|
43
|
-
*
|
|
44
|
-
* @param context - The build context.
|
|
45
|
-
* @returns The resolved esbuild options.
|
|
46
|
-
*/
|
|
47
|
-
function extractESBuildConfig(context) {
|
|
48
|
-
const inject = context.config.build.override.inject ?? context.config.build.inject;
|
|
49
|
-
if (inject && Object.keys(inject).length > 0) context.fs.writeSync(joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js"), Object.entries(inject).map(([key, value]) => {
|
|
50
|
-
if (value) if (Array.isArray(value)) {
|
|
51
|
-
if (camelCase(key) !== key) {
|
|
52
|
-
if (value.length === 1) return `
|
|
53
|
-
import ${camelCase(key)} from "${value[0]}";
|
|
54
|
-
export { ${camelCase(key)} as "${key}" }`;
|
|
55
|
-
else if (value.length > 1) return `
|
|
56
|
-
import ${value[1] === "*" ? `* as ${camelCase(key)}` : `{ ${value[1]} as ${camelCase(key)} }`} from "${value[0]}";
|
|
57
|
-
export { ${camelCase(key)} as "${key}" }`;
|
|
58
|
-
} else if (value.length === 1) return `
|
|
59
|
-
import ${key} from "${value[0]}";
|
|
60
|
-
export { ${key} };`;
|
|
61
|
-
else if (value.length > 1) return `
|
|
62
|
-
import ${value[1] === "*" ? `* as ${key}` : `{ ${value[1]} as ${key} }`} from "${value[0]}";
|
|
63
|
-
export { ${key} };`;
|
|
64
|
-
} else if (camelCase(key) !== key) return `
|
|
65
|
-
import ${camelCase(key)} from "${value[0]}";
|
|
66
|
-
export { ${camelCase(key)} as "${key}" }`;
|
|
67
|
-
else return `
|
|
68
|
-
import ${key} from "${value}";
|
|
69
|
-
export { ${key} };`;
|
|
70
|
-
return "";
|
|
71
|
-
}).join("\n"));
|
|
72
|
-
return defu$1({
|
|
73
|
-
alias: context.builtins.reduce((ret, id) => {
|
|
74
|
-
if (!ret[id]) {
|
|
75
|
-
const path = context.fs.ids[id];
|
|
76
|
-
if (path) ret[id] = path;
|
|
77
|
-
}
|
|
78
|
-
return ret;
|
|
79
|
-
}, context.config.build.alias ? Array.isArray(context.config.build.alias) ? context.config.build.alias.reduce((ret, alias) => {
|
|
80
|
-
if (!ret[alias.find.toString()]) ret[alias.find.toString()] = alias.replacement;
|
|
81
|
-
return ret;
|
|
82
|
-
}, {}) : context.config.build.alias : {}),
|
|
83
|
-
inject: inject && Object.keys(inject).length > 0 ? [joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js")] : void 0
|
|
84
|
-
}, context.config.build.variant === "esbuild" ? omit(context.config.build.override, [
|
|
85
|
-
"alias",
|
|
86
|
-
"inject",
|
|
87
|
-
"external",
|
|
88
|
-
"noExternal",
|
|
89
|
-
"skipNodeModulesBundle",
|
|
90
|
-
"extensions"
|
|
91
|
-
]) : {}, context.config.build.variant === "esbuild" ? omit(context.config.build, [
|
|
92
|
-
"alias",
|
|
93
|
-
"inject",
|
|
94
|
-
"external",
|
|
95
|
-
"noExternal",
|
|
96
|
-
"skipNodeModulesBundle",
|
|
97
|
-
"extensions",
|
|
98
|
-
"variant",
|
|
99
|
-
"override"
|
|
100
|
-
]) : {}, {
|
|
101
|
-
mainFields: context.config.build.mainFields,
|
|
102
|
-
conditions: context.config.build.conditions,
|
|
103
|
-
define: context.config.build.define,
|
|
104
|
-
resolveExtensions: context.config.build.extensions,
|
|
105
|
-
packages: context.config.build.skipNodeModulesBundle ? "external" : context.config.build.variant === "esbuild" ? context.config.build.packages : void 0,
|
|
106
|
-
format: Array.isArray(context.config.output.format) ? context.config.output.format[0] : context.config.output.format,
|
|
107
|
-
platform: context.config.build.platform,
|
|
108
|
-
treeShaking: Boolean(context.config.build?.treeshake) || context.config.build?.treeShaking,
|
|
109
|
-
outdir: context.config.output.buildPath,
|
|
110
|
-
tsconfig: context.tsconfig.tsconfigFilePath,
|
|
111
|
-
minify: context.config.mode !== "development",
|
|
112
|
-
metafile: context.config.mode === "development",
|
|
113
|
-
sourcemap: context.config.mode === "development"
|
|
114
|
-
}, DEFAULT_ESBUILD_CONFIG);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
//#endregion
|
|
118
7
|
//#region src/index.ts
|
|
119
8
|
/**
|
|
120
9
|
* A Powerlines plugin to assist in developing other Powerlines plugins.
|
|
@@ -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;
|