@powerlines/plugin-asyncapi 0.1.125 → 0.1.126
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/index-BgAdqTbb.d.mts +1 -0
- package/dist/index-CEgs-Dz2.d.cts +1 -0
- package/dist/index.cjs +64 -4
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -3
- package/dist/index.mjs +35 -1
- package/dist/plugin-C3MaN5jp.mjs +1 -0
- package/dist/plugin-Cesl-g7l.d.mts +1845 -0
- package/dist/plugin-DHXHjv16.cjs +0 -0
- package/dist/plugin-DriZVY5K.d.cts +1845 -0
- package/dist/types/index.cjs +2 -0
- package/dist/types/index.d.cts +2 -1
- package/dist/types/index.d.mts +2 -1
- package/dist/types/index.mjs +3 -0
- package/dist/types/plugin.cjs +1 -0
- package/dist/types/plugin.d.cts +1 -100
- package/dist/types/plugin.d.mts +1 -100
- package/dist/types/plugin.mjs +2 -0
- package/dist/types-CTUnla4x.mjs +1 -0
- package/dist/types-DHkg7xmX.cjs +0 -0
- package/package.json +3 -3
- package/dist/_virtual/rolldown_runtime.cjs +0 -29
- package/dist/powerlines/src/plugin-utils/paths.cjs +0 -36
- package/dist/powerlines/src/plugin-utils/paths.mjs +0 -35
- package/dist/powerlines/src/types/build.d.cts +0 -145
- package/dist/powerlines/src/types/build.d.mts +0 -145
- package/dist/powerlines/src/types/commands.d.cts +0 -8
- package/dist/powerlines/src/types/commands.d.mts +0 -8
- package/dist/powerlines/src/types/config.d.cts +0 -369
- package/dist/powerlines/src/types/config.d.mts +0 -369
- package/dist/powerlines/src/types/context.d.cts +0 -403
- package/dist/powerlines/src/types/context.d.mts +0 -403
- package/dist/powerlines/src/types/fs.d.cts +0 -486
- package/dist/powerlines/src/types/fs.d.mts +0 -486
- package/dist/powerlines/src/types/plugin.d.cts +0 -231
- package/dist/powerlines/src/types/plugin.d.mts +0 -231
- package/dist/powerlines/src/types/resolved.d.cts +0 -81
- package/dist/powerlines/src/types/resolved.d.mts +0 -81
- package/dist/powerlines/src/types/tsconfig.d.cts +0 -69
- package/dist/powerlines/src/types/tsconfig.d.mts +0 -69
package/dist/types/index.cjs
CHANGED
package/dist/types/index.d.cts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import { AsyncAPIPluginContext,
|
|
1
|
+
import { a as __ΩAsyncAPIPluginContext, c as __ΩAsyncAPIPluginUserConfig, i as AsyncAPIPluginUserConfig, n as AsyncAPIPluginOptions, o as __ΩAsyncAPIPluginOptions, r as AsyncAPIPluginResolvedConfig, s as __ΩAsyncAPIPluginResolvedConfig, t as AsyncAPIPluginContext } from "../plugin-DriZVY5K.cjs";
|
|
2
|
+
import "../index-CEgs-Dz2.cjs";
|
|
2
3
|
export { AsyncAPIPluginContext, AsyncAPIPluginOptions, AsyncAPIPluginResolvedConfig, AsyncAPIPluginUserConfig, __ΩAsyncAPIPluginContext, __ΩAsyncAPIPluginOptions, __ΩAsyncAPIPluginResolvedConfig, __ΩAsyncAPIPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import { AsyncAPIPluginContext,
|
|
1
|
+
import { a as __ΩAsyncAPIPluginContext, c as __ΩAsyncAPIPluginUserConfig, i as AsyncAPIPluginUserConfig, n as AsyncAPIPluginOptions, o as __ΩAsyncAPIPluginOptions, r as AsyncAPIPluginResolvedConfig, s as __ΩAsyncAPIPluginResolvedConfig, t as AsyncAPIPluginContext } from "../plugin-Cesl-g7l.mjs";
|
|
2
|
+
import "../index-BgAdqTbb.mjs";
|
|
2
3
|
export { AsyncAPIPluginContext, AsyncAPIPluginOptions, AsyncAPIPluginResolvedConfig, AsyncAPIPluginUserConfig, __ΩAsyncAPIPluginContext, __ΩAsyncAPIPluginOptions, __ΩAsyncAPIPluginResolvedConfig, __ΩAsyncAPIPluginUserConfig };
|
package/dist/types/index.mjs
CHANGED
package/dist/types/plugin.cjs
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require('../plugin-DHXHjv16.cjs');
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,101 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ResolvedConfig } from "../powerlines/src/types/resolved.cjs";
|
|
3
|
-
import { PluginContext } from "../powerlines/src/types/context.cjs";
|
|
4
|
-
import { GeneratorOptions } from "@asyncapi/generator";
|
|
5
|
-
import { AsyncAPIDocument } from "@asyncapi/parser/esm/models/v3/asyncapi";
|
|
6
|
-
|
|
7
|
-
//#region src/types/plugin.d.ts
|
|
8
|
-
interface AsyncAPIPluginOptions {
|
|
9
|
-
/**
|
|
10
|
-
* The path to the AsyncAPI schema file.
|
|
11
|
-
*
|
|
12
|
-
* @remarks
|
|
13
|
-
* This can be a string file path/remote URL string or a {@link URL} object.
|
|
14
|
-
*
|
|
15
|
-
* @defaultValue "\{projectRoot\}/schema.yaml"
|
|
16
|
-
*/
|
|
17
|
-
schema?: string | URL | AsyncAPIDocument;
|
|
18
|
-
/**
|
|
19
|
-
* The name of the AsyncAPI template to use.
|
|
20
|
-
*
|
|
21
|
-
* @remarks
|
|
22
|
-
* This can be a local path or a template package that will be installed by AsyncAPI.
|
|
23
|
-
*/
|
|
24
|
-
templateName: string;
|
|
25
|
-
/**
|
|
26
|
-
* The target directory where the generated files will be written.
|
|
27
|
-
*
|
|
28
|
-
* @remarks
|
|
29
|
-
* If using the default value, the files can be imported from "powerlines:asyncapi/fileName". This field allows the use of the "\{builtinPath\}" token to refer to the built-in Powerlines plugins directory - the value will be replaced with the correct file path by the plugin.
|
|
30
|
-
*
|
|
31
|
-
* @defaultValue "\{builtinPath\}/asyncapi"
|
|
32
|
-
*/
|
|
33
|
-
outputPath?: string;
|
|
34
|
-
/**
|
|
35
|
-
* Name of the file to use as the entry point for the rendering process. Use in case you want to use only a specific template file. Note: this potentially avoids rendering every file in the template.
|
|
36
|
-
*/
|
|
37
|
-
entrypoint?: string;
|
|
38
|
-
/**
|
|
39
|
-
* Template parameters to pass to the AsyncAPI generator.
|
|
40
|
-
*/
|
|
41
|
-
templateParams?: Record<string, any>;
|
|
42
|
-
/**
|
|
43
|
-
* Glob patterns to prevent overwriting specific files.
|
|
44
|
-
*/
|
|
45
|
-
noOverwriteGlobs?: string[];
|
|
46
|
-
/**
|
|
47
|
-
* Object with hooks to disable. The key is a hook type. If key has "true" value, then the generator skips all hooks from the given type. If the value associated with a key is a string with the name of a single hook, then the generator skips only this single hook name. If the value associated with a key is an array of strings, then the generator skips only hooks from the array.
|
|
48
|
-
*/
|
|
49
|
-
disabledHooks?: Record<string, boolean | string | string[]>;
|
|
50
|
-
/**
|
|
51
|
-
* The registry to use for installing templates/dependencies.
|
|
52
|
-
*
|
|
53
|
-
* @remarks
|
|
54
|
-
* If no value is provided, the default registry configured for the repository will be used.
|
|
55
|
-
*/
|
|
56
|
-
registry?: string | {
|
|
57
|
-
url: string;
|
|
58
|
-
auth?: string;
|
|
59
|
-
token?: string;
|
|
60
|
-
};
|
|
61
|
-
/**
|
|
62
|
-
* Whether to force write files even if they exist.
|
|
63
|
-
*
|
|
64
|
-
* @defaultValue true
|
|
65
|
-
*/
|
|
66
|
-
forceWrite?: boolean;
|
|
67
|
-
/**
|
|
68
|
-
* Whether to enable debug mode.
|
|
69
|
-
*
|
|
70
|
-
* @remarks
|
|
71
|
-
* When no value is provided, if `mode` is "development" or `logLevel` is "debug" or "trace", debug mode will be enabled by default.
|
|
72
|
-
*
|
|
73
|
-
* @defaultValue false
|
|
74
|
-
*/
|
|
75
|
-
debug?: boolean;
|
|
76
|
-
/**
|
|
77
|
-
* Whether to compile the template before generating files.
|
|
78
|
-
*
|
|
79
|
-
* @defaultValue false
|
|
80
|
-
*/
|
|
81
|
-
compile?: boolean;
|
|
82
|
-
/**
|
|
83
|
-
* Optional parameter to map schema references from a base url to a local base folder e.g. url=https://schema.example.com/crm/ folder=./test/docs/ .
|
|
84
|
-
*/
|
|
85
|
-
mapBaseUrlToFolder?: Record<string, string>;
|
|
86
|
-
}
|
|
87
|
-
type AsyncAPIPluginUserConfig = UserConfig & {
|
|
88
|
-
asyncapi?: GeneratorOptions & Required<Pick<AsyncAPIPluginOptions, "schema" | "templateName" | "outputPath">>;
|
|
89
|
-
};
|
|
90
|
-
type AsyncAPIPluginResolvedConfig = ResolvedConfig & {
|
|
91
|
-
asyncapi: GeneratorOptions & Required<Pick<AsyncAPIPluginOptions, "schema" | "templateName" | "outputPath">> & {
|
|
92
|
-
document: string | AsyncAPIDocument;
|
|
93
|
-
};
|
|
94
|
-
};
|
|
95
|
-
type AsyncAPIPluginContext<TResolvedConfig extends AsyncAPIPluginResolvedConfig = AsyncAPIPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
96
|
-
declare type __ΩAsyncAPIPluginOptions = any[];
|
|
97
|
-
declare type __ΩAsyncAPIPluginUserConfig = any[];
|
|
98
|
-
declare type __ΩAsyncAPIPluginResolvedConfig = any[];
|
|
99
|
-
declare type __ΩAsyncAPIPluginContext = any[];
|
|
100
|
-
//#endregion
|
|
1
|
+
import { a as __ΩAsyncAPIPluginContext, c as __ΩAsyncAPIPluginUserConfig, i as AsyncAPIPluginUserConfig, n as AsyncAPIPluginOptions, o as __ΩAsyncAPIPluginOptions, r as AsyncAPIPluginResolvedConfig, s as __ΩAsyncAPIPluginResolvedConfig, t as AsyncAPIPluginContext } from "../plugin-DriZVY5K.cjs";
|
|
101
2
|
export { AsyncAPIPluginContext, AsyncAPIPluginOptions, AsyncAPIPluginResolvedConfig, AsyncAPIPluginUserConfig, __ΩAsyncAPIPluginContext, __ΩAsyncAPIPluginOptions, __ΩAsyncAPIPluginResolvedConfig, __ΩAsyncAPIPluginUserConfig };
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,101 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ResolvedConfig } from "../powerlines/src/types/resolved.mjs";
|
|
3
|
-
import { PluginContext } from "../powerlines/src/types/context.mjs";
|
|
4
|
-
import { GeneratorOptions } from "@asyncapi/generator";
|
|
5
|
-
import { AsyncAPIDocument } from "@asyncapi/parser/esm/models/v3/asyncapi";
|
|
6
|
-
|
|
7
|
-
//#region src/types/plugin.d.ts
|
|
8
|
-
interface AsyncAPIPluginOptions {
|
|
9
|
-
/**
|
|
10
|
-
* The path to the AsyncAPI schema file.
|
|
11
|
-
*
|
|
12
|
-
* @remarks
|
|
13
|
-
* This can be a string file path/remote URL string or a {@link URL} object.
|
|
14
|
-
*
|
|
15
|
-
* @defaultValue "\{projectRoot\}/schema.yaml"
|
|
16
|
-
*/
|
|
17
|
-
schema?: string | URL | AsyncAPIDocument;
|
|
18
|
-
/**
|
|
19
|
-
* The name of the AsyncAPI template to use.
|
|
20
|
-
*
|
|
21
|
-
* @remarks
|
|
22
|
-
* This can be a local path or a template package that will be installed by AsyncAPI.
|
|
23
|
-
*/
|
|
24
|
-
templateName: string;
|
|
25
|
-
/**
|
|
26
|
-
* The target directory where the generated files will be written.
|
|
27
|
-
*
|
|
28
|
-
* @remarks
|
|
29
|
-
* If using the default value, the files can be imported from "powerlines:asyncapi/fileName". This field allows the use of the "\{builtinPath\}" token to refer to the built-in Powerlines plugins directory - the value will be replaced with the correct file path by the plugin.
|
|
30
|
-
*
|
|
31
|
-
* @defaultValue "\{builtinPath\}/asyncapi"
|
|
32
|
-
*/
|
|
33
|
-
outputPath?: string;
|
|
34
|
-
/**
|
|
35
|
-
* Name of the file to use as the entry point for the rendering process. Use in case you want to use only a specific template file. Note: this potentially avoids rendering every file in the template.
|
|
36
|
-
*/
|
|
37
|
-
entrypoint?: string;
|
|
38
|
-
/**
|
|
39
|
-
* Template parameters to pass to the AsyncAPI generator.
|
|
40
|
-
*/
|
|
41
|
-
templateParams?: Record<string, any>;
|
|
42
|
-
/**
|
|
43
|
-
* Glob patterns to prevent overwriting specific files.
|
|
44
|
-
*/
|
|
45
|
-
noOverwriteGlobs?: string[];
|
|
46
|
-
/**
|
|
47
|
-
* Object with hooks to disable. The key is a hook type. If key has "true" value, then the generator skips all hooks from the given type. If the value associated with a key is a string with the name of a single hook, then the generator skips only this single hook name. If the value associated with a key is an array of strings, then the generator skips only hooks from the array.
|
|
48
|
-
*/
|
|
49
|
-
disabledHooks?: Record<string, boolean | string | string[]>;
|
|
50
|
-
/**
|
|
51
|
-
* The registry to use for installing templates/dependencies.
|
|
52
|
-
*
|
|
53
|
-
* @remarks
|
|
54
|
-
* If no value is provided, the default registry configured for the repository will be used.
|
|
55
|
-
*/
|
|
56
|
-
registry?: string | {
|
|
57
|
-
url: string;
|
|
58
|
-
auth?: string;
|
|
59
|
-
token?: string;
|
|
60
|
-
};
|
|
61
|
-
/**
|
|
62
|
-
* Whether to force write files even if they exist.
|
|
63
|
-
*
|
|
64
|
-
* @defaultValue true
|
|
65
|
-
*/
|
|
66
|
-
forceWrite?: boolean;
|
|
67
|
-
/**
|
|
68
|
-
* Whether to enable debug mode.
|
|
69
|
-
*
|
|
70
|
-
* @remarks
|
|
71
|
-
* When no value is provided, if `mode` is "development" or `logLevel` is "debug" or "trace", debug mode will be enabled by default.
|
|
72
|
-
*
|
|
73
|
-
* @defaultValue false
|
|
74
|
-
*/
|
|
75
|
-
debug?: boolean;
|
|
76
|
-
/**
|
|
77
|
-
* Whether to compile the template before generating files.
|
|
78
|
-
*
|
|
79
|
-
* @defaultValue false
|
|
80
|
-
*/
|
|
81
|
-
compile?: boolean;
|
|
82
|
-
/**
|
|
83
|
-
* Optional parameter to map schema references from a base url to a local base folder e.g. url=https://schema.example.com/crm/ folder=./test/docs/ .
|
|
84
|
-
*/
|
|
85
|
-
mapBaseUrlToFolder?: Record<string, string>;
|
|
86
|
-
}
|
|
87
|
-
type AsyncAPIPluginUserConfig = UserConfig & {
|
|
88
|
-
asyncapi?: GeneratorOptions & Required<Pick<AsyncAPIPluginOptions, "schema" | "templateName" | "outputPath">>;
|
|
89
|
-
};
|
|
90
|
-
type AsyncAPIPluginResolvedConfig = ResolvedConfig & {
|
|
91
|
-
asyncapi: GeneratorOptions & Required<Pick<AsyncAPIPluginOptions, "schema" | "templateName" | "outputPath">> & {
|
|
92
|
-
document: string | AsyncAPIDocument;
|
|
93
|
-
};
|
|
94
|
-
};
|
|
95
|
-
type AsyncAPIPluginContext<TResolvedConfig extends AsyncAPIPluginResolvedConfig = AsyncAPIPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
96
|
-
declare type __ΩAsyncAPIPluginOptions = any[];
|
|
97
|
-
declare type __ΩAsyncAPIPluginUserConfig = any[];
|
|
98
|
-
declare type __ΩAsyncAPIPluginResolvedConfig = any[];
|
|
99
|
-
declare type __ΩAsyncAPIPluginContext = any[];
|
|
100
|
-
//#endregion
|
|
1
|
+
import { a as __ΩAsyncAPIPluginContext, c as __ΩAsyncAPIPluginUserConfig, i as AsyncAPIPluginUserConfig, n as AsyncAPIPluginOptions, o as __ΩAsyncAPIPluginOptions, r as AsyncAPIPluginResolvedConfig, s as __ΩAsyncAPIPluginResolvedConfig, t as AsyncAPIPluginContext } from "../plugin-Cesl-g7l.mjs";
|
|
101
2
|
export { AsyncAPIPluginContext, AsyncAPIPluginOptions, AsyncAPIPluginResolvedConfig, AsyncAPIPluginUserConfig, __ΩAsyncAPIPluginContext, __ΩAsyncAPIPluginOptions, __ΩAsyncAPIPluginResolvedConfig, __ΩAsyncAPIPluginUserConfig };
|
package/dist/types/plugin.mjs
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-asyncapi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.126",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to generate project code from AsyncAPI specifications.",
|
|
6
6
|
"repository": {
|
|
@@ -128,9 +128,9 @@
|
|
|
128
128
|
},
|
|
129
129
|
"devDependencies": {
|
|
130
130
|
"@powerlines/nx": "^0.11.52",
|
|
131
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
131
|
+
"@powerlines/plugin-plugin": "^0.12.74",
|
|
132
132
|
"@types/node": "^24.10.4"
|
|
133
133
|
},
|
|
134
134
|
"publishConfig": { "access": "public" },
|
|
135
|
-
"gitHead": "
|
|
135
|
+
"gitHead": "a703a2dd9be6175a67a9bf4847d0217be4e920af"
|
|
136
136
|
}
|
|
@@ -1,29 +0,0 @@
|
|
|
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,36 +0,0 @@
|
|
|
1
|
-
const require_rolldown_runtime = require('../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
-
let __stryke_path_replace = require("@stryke/path/replace");
|
|
3
|
-
|
|
4
|
-
//#region ../powerlines/src/plugin-utils/paths.ts
|
|
5
|
-
/**
|
|
6
|
-
* Replaces tokens in the given path string with their corresponding values from the context.
|
|
7
|
-
*
|
|
8
|
-
* @remarks
|
|
9
|
-
* The following tokens are supported:
|
|
10
|
-
* - `{workspaceRoot}` - The root directory of the workspace.
|
|
11
|
-
* - `{root}` - The root directory of the project (same as `{projectRoot}`).
|
|
12
|
-
* - `{projectRoot}` - The root directory of the project (same as `{root}`).
|
|
13
|
-
* - `{sourceRoot}` - The source root directory of the project (usually `./src`).
|
|
14
|
-
* - `{powerlinesPath}` - The directory where Powerlines is installed.
|
|
15
|
-
* - `{cachePath}` - The environment's directory for cached files.
|
|
16
|
-
* - `{dataPath}` - The environment's directory for data files.
|
|
17
|
-
* - `{logPath}` - The environment's directory for log files.
|
|
18
|
-
* - `{tempPath}` - The environment's directory for temporary files.
|
|
19
|
-
* - `{configPath}` - The environment's directory for configuration files.
|
|
20
|
-
* - `{outputPath}` - The configured output directory for the project.
|
|
21
|
-
* - `{buildPath}` - The configured distribution directory for the project.
|
|
22
|
-
* - `{artifactsPath}` - The configured directory for build artifacts.
|
|
23
|
-
* - `{builtinPath}` - The configured directory for generated built-in plugins.
|
|
24
|
-
* - `{entryPath}` - The configured directory for generated entry files.
|
|
25
|
-
*
|
|
26
|
-
* @param context - The context containing the values for the path tokens.
|
|
27
|
-
* @param path - The path string with tokens to replace.
|
|
28
|
-
* @returns The path string with tokens replaced by their corresponding values from the context.
|
|
29
|
-
*/
|
|
30
|
-
function replacePathTokens(context, path) {
|
|
31
|
-
if (!path) return path;
|
|
32
|
-
return path.replaceAll("{workspaceRoot}", context.workspaceConfig.workspaceRoot).replaceAll("{root}", context.config.projectRoot).replaceAll("{projectRoot}", context.config.projectRoot).replaceAll("{sourceRoot}", context.config.sourceRoot).replaceAll("{powerlinesPath}", context.powerlinesPath).replaceAll("{cachePath}", context.cachePath).replaceAll("{dataPath}", context.dataPath).replaceAll("{logPath}", context.envPaths.log).replaceAll("{tempPath}", context.envPaths.temp).replaceAll("{configPath}", context.envPaths.config).replaceAll("{outputPath}", context.config.output.outputPath).replaceAll("{buildPath}", context.config.output.buildPath).replaceAll("{artifactsPath}", (0, __stryke_path_replace.replacePath)(context.artifactsPath, context.workspaceConfig.workspaceRoot)).replaceAll("{builtinPath}", (0, __stryke_path_replace.replacePath)(context.builtinsPath, context.workspaceConfig.workspaceRoot)).replaceAll("{entryPath}", (0, __stryke_path_replace.replacePath)(context.entryPath, context.workspaceConfig.workspaceRoot));
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
//#endregion
|
|
36
|
-
exports.replacePathTokens = replacePathTokens;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { replacePath } from "@stryke/path/replace";
|
|
2
|
-
|
|
3
|
-
//#region ../powerlines/src/plugin-utils/paths.ts
|
|
4
|
-
/**
|
|
5
|
-
* Replaces tokens in the given path string with their corresponding values from the context.
|
|
6
|
-
*
|
|
7
|
-
* @remarks
|
|
8
|
-
* The following tokens are supported:
|
|
9
|
-
* - `{workspaceRoot}` - The root directory of the workspace.
|
|
10
|
-
* - `{root}` - The root directory of the project (same as `{projectRoot}`).
|
|
11
|
-
* - `{projectRoot}` - The root directory of the project (same as `{root}`).
|
|
12
|
-
* - `{sourceRoot}` - The source root directory of the project (usually `./src`).
|
|
13
|
-
* - `{powerlinesPath}` - The directory where Powerlines is installed.
|
|
14
|
-
* - `{cachePath}` - The environment's directory for cached files.
|
|
15
|
-
* - `{dataPath}` - The environment's directory for data files.
|
|
16
|
-
* - `{logPath}` - The environment's directory for log files.
|
|
17
|
-
* - `{tempPath}` - The environment's directory for temporary files.
|
|
18
|
-
* - `{configPath}` - The environment's directory for configuration files.
|
|
19
|
-
* - `{outputPath}` - The configured output directory for the project.
|
|
20
|
-
* - `{buildPath}` - The configured distribution directory for the project.
|
|
21
|
-
* - `{artifactsPath}` - The configured directory for build artifacts.
|
|
22
|
-
* - `{builtinPath}` - The configured directory for generated built-in plugins.
|
|
23
|
-
* - `{entryPath}` - The configured directory for generated entry files.
|
|
24
|
-
*
|
|
25
|
-
* @param context - The context containing the values for the path tokens.
|
|
26
|
-
* @param path - The path string with tokens to replace.
|
|
27
|
-
* @returns The path string with tokens replaced by their corresponding values from the context.
|
|
28
|
-
*/
|
|
29
|
-
function replacePathTokens(context, path) {
|
|
30
|
-
if (!path) return path;
|
|
31
|
-
return path.replaceAll("{workspaceRoot}", context.workspaceConfig.workspaceRoot).replaceAll("{root}", context.config.projectRoot).replaceAll("{projectRoot}", context.config.projectRoot).replaceAll("{sourceRoot}", context.config.sourceRoot).replaceAll("{powerlinesPath}", context.powerlinesPath).replaceAll("{cachePath}", context.cachePath).replaceAll("{dataPath}", context.dataPath).replaceAll("{logPath}", context.envPaths.log).replaceAll("{tempPath}", context.envPaths.temp).replaceAll("{configPath}", context.envPaths.config).replaceAll("{outputPath}", context.config.output.outputPath).replaceAll("{buildPath}", context.config.output.buildPath).replaceAll("{artifactsPath}", replacePath(context.artifactsPath, context.workspaceConfig.workspaceRoot)).replaceAll("{builtinPath}", replacePath(context.builtinsPath, context.workspaceConfig.workspaceRoot)).replaceAll("{entryPath}", replacePath(context.entryPath, context.workspaceConfig.workspaceRoot));
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
//#endregion
|
|
35
|
-
export { replacePathTokens };
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
//#region ../powerlines/src/types/build.d.ts
|
|
2
|
-
|
|
3
|
-
type UnpluginBuildVariant = "rollup" | "webpack" | "rspack" | "vite" | "esbuild" | "farm" | "unloader" | "rolldown";
|
|
4
|
-
interface BuildConfig {
|
|
5
|
-
/**
|
|
6
|
-
* The platform to build the project for
|
|
7
|
-
*
|
|
8
|
-
* @defaultValue "neutral"
|
|
9
|
-
*/
|
|
10
|
-
platform?: "node" | "browser" | "neutral";
|
|
11
|
-
/**
|
|
12
|
-
* Array of strings indicating the polyfills to include for the build.
|
|
13
|
-
*
|
|
14
|
-
* @remarks
|
|
15
|
-
* This option allows you to specify which polyfills should be included in the build process to ensure compatibility with the target environment. The paths for the polyfills can use placeholder tokens (the `replacePathTokens` helper function will be used to resolve the actual values).
|
|
16
|
-
*
|
|
17
|
-
* @example
|
|
18
|
-
* ```ts
|
|
19
|
-
* {
|
|
20
|
-
* polyfill: ['{projectRoot}/custom-polyfill.ts']
|
|
21
|
-
* }
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
polyfill?: string[];
|
|
25
|
-
/**
|
|
26
|
-
* Array of strings indicating the order in which fields in a package.json file should be resolved to determine the entry point for a module.
|
|
27
|
-
*
|
|
28
|
-
* @defaultValue `['browser', 'module', 'jsnext:main', 'jsnext']`
|
|
29
|
-
*/
|
|
30
|
-
mainFields?: string[];
|
|
31
|
-
/**
|
|
32
|
-
* Array of strings indicating what conditions should be used for module resolution.
|
|
33
|
-
*/
|
|
34
|
-
conditions?: string[];
|
|
35
|
-
/**
|
|
36
|
-
* Array of strings indicating what file extensions should be used for module resolution.
|
|
37
|
-
*
|
|
38
|
-
* @defaultValue `['.mjs', '.js', '.mts', '.ts', '.jsx', '.tsx', '.json']`
|
|
39
|
-
*/
|
|
40
|
-
extensions?: string[];
|
|
41
|
-
/**
|
|
42
|
-
* Array of strings indicating what modules should be deduplicated to a single version in the build.
|
|
43
|
-
*
|
|
44
|
-
* @remarks
|
|
45
|
-
* This option is useful for ensuring that only one version of a module is included in the bundle, which can help reduce bundle size and avoid conflicts.
|
|
46
|
-
*/
|
|
47
|
-
dedupe?: string[];
|
|
48
|
-
/**
|
|
49
|
-
* Array of strings or regular expressions that indicate what modules are builtin for the environment.
|
|
50
|
-
*/
|
|
51
|
-
builtins?: (string | RegExp)[];
|
|
52
|
-
/**
|
|
53
|
-
* Define global variable replacements.
|
|
54
|
-
*
|
|
55
|
-
* @remarks
|
|
56
|
-
* This option allows you to specify global constants that will be replaced in the code during the build process. It is similar to the `define` option in esbuild and Vite, enabling you to replace specific identifiers with constant expressions at build time.
|
|
57
|
-
*
|
|
58
|
-
* @example
|
|
59
|
-
* ```ts
|
|
60
|
-
* {
|
|
61
|
-
* define: {
|
|
62
|
-
* __VERSION__: '"1.0.0"',
|
|
63
|
-
* __DEV__: 'process.env.NODE_ENV !== "production"'
|
|
64
|
-
* }
|
|
65
|
-
* }
|
|
66
|
-
* ```
|
|
67
|
-
*
|
|
68
|
-
* @see https://esbuild.github.io/api/#define
|
|
69
|
-
* @see https://vitejs.dev/config/build-options.html#define
|
|
70
|
-
* @see https://github.com/rollup/plugins/tree/master/packages/replace
|
|
71
|
-
*/
|
|
72
|
-
define?: Record<string, any>;
|
|
73
|
-
/**
|
|
74
|
-
* Global variables that will have import statements injected where necessary
|
|
75
|
-
*
|
|
76
|
-
* @remarks
|
|
77
|
-
* This option allows you to specify global variables that should be automatically imported from specified modules whenever they are used in the code. This is particularly useful for polyfilling Node.js globals in a browser environment.
|
|
78
|
-
*
|
|
79
|
-
* @example
|
|
80
|
-
* ```ts
|
|
81
|
-
* {
|
|
82
|
-
* inject: {
|
|
83
|
-
* process: 'process/browser',
|
|
84
|
-
* Buffer: ['buffer', 'Buffer'],
|
|
85
|
-
* }
|
|
86
|
-
* }
|
|
87
|
-
* ```
|
|
88
|
-
*
|
|
89
|
-
* @see https://github.com/rollup/plugins/tree/master/packages/inject
|
|
90
|
-
*/
|
|
91
|
-
inject?: Record<string, string | string[]>;
|
|
92
|
-
/**
|
|
93
|
-
* The alias mappings to use for module resolution during the build process.
|
|
94
|
-
*
|
|
95
|
-
* @remarks
|
|
96
|
-
* This option allows you to define custom path aliases for modules, which can be useful for simplifying imports and managing dependencies.
|
|
97
|
-
*
|
|
98
|
-
* @example
|
|
99
|
-
* ```ts
|
|
100
|
-
* {
|
|
101
|
-
* alias: {
|
|
102
|
-
* "@utils": "./src/utils",
|
|
103
|
-
* "@components": "./src/components"
|
|
104
|
-
* }
|
|
105
|
-
* }
|
|
106
|
-
* ```
|
|
107
|
-
*
|
|
108
|
-
* @see https://github.com/rollup/plugins/tree/master/packages/alias
|
|
109
|
-
*/
|
|
110
|
-
alias?: Record<string, string> | Array<{
|
|
111
|
-
find: string | RegExp;
|
|
112
|
-
replacement: string;
|
|
113
|
-
}>;
|
|
114
|
-
/**
|
|
115
|
-
* A list of modules that should not be bundled, even if they are external dependencies.
|
|
116
|
-
*
|
|
117
|
-
* @remarks
|
|
118
|
-
* This option is useful for excluding specific modules from the bundle, such as Node.js built-in modules or other libraries that should not be bundled.
|
|
119
|
-
*/
|
|
120
|
-
external?: (string | RegExp)[];
|
|
121
|
-
/**
|
|
122
|
-
* A list of modules that should always be bundled, even if they are external dependencies.
|
|
123
|
-
*/
|
|
124
|
-
noExternal?: (string | RegExp)[];
|
|
125
|
-
/**
|
|
126
|
-
* Should the Powerlines CLI processes skip bundling the `node_modules` directory?
|
|
127
|
-
*/
|
|
128
|
-
skipNodeModulesBundle?: boolean;
|
|
129
|
-
/**
|
|
130
|
-
* If true, `process.env` referenced in code will be preserved as-is and evaluated in runtime. Otherwise, it is statically replaced as an empty object.
|
|
131
|
-
*
|
|
132
|
-
* @defaultValue false
|
|
133
|
-
*/
|
|
134
|
-
keepProcessEnv?: boolean;
|
|
135
|
-
/**
|
|
136
|
-
* An optional set of override options to apply to the selected build variant.
|
|
137
|
-
*
|
|
138
|
-
* @remarks
|
|
139
|
-
* This option allows you to provide configuration options with the guarantee that they will **not** be overridden and will take precedence over other build configurations.
|
|
140
|
-
*/
|
|
141
|
-
override?: Record<string, any>;
|
|
142
|
-
}
|
|
143
|
-
type BuildResolvedConfig = Omit<BuildConfig, "override">;
|
|
144
|
-
//#endregion
|
|
145
|
-
export { BuildConfig, BuildResolvedConfig, UnpluginBuildVariant };
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
//#region ../powerlines/src/types/build.d.ts
|
|
2
|
-
|
|
3
|
-
type UnpluginBuildVariant = "rollup" | "webpack" | "rspack" | "vite" | "esbuild" | "farm" | "unloader" | "rolldown";
|
|
4
|
-
interface BuildConfig {
|
|
5
|
-
/**
|
|
6
|
-
* The platform to build the project for
|
|
7
|
-
*
|
|
8
|
-
* @defaultValue "neutral"
|
|
9
|
-
*/
|
|
10
|
-
platform?: "node" | "browser" | "neutral";
|
|
11
|
-
/**
|
|
12
|
-
* Array of strings indicating the polyfills to include for the build.
|
|
13
|
-
*
|
|
14
|
-
* @remarks
|
|
15
|
-
* This option allows you to specify which polyfills should be included in the build process to ensure compatibility with the target environment. The paths for the polyfills can use placeholder tokens (the `replacePathTokens` helper function will be used to resolve the actual values).
|
|
16
|
-
*
|
|
17
|
-
* @example
|
|
18
|
-
* ```ts
|
|
19
|
-
* {
|
|
20
|
-
* polyfill: ['{projectRoot}/custom-polyfill.ts']
|
|
21
|
-
* }
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
polyfill?: string[];
|
|
25
|
-
/**
|
|
26
|
-
* Array of strings indicating the order in which fields in a package.json file should be resolved to determine the entry point for a module.
|
|
27
|
-
*
|
|
28
|
-
* @defaultValue `['browser', 'module', 'jsnext:main', 'jsnext']`
|
|
29
|
-
*/
|
|
30
|
-
mainFields?: string[];
|
|
31
|
-
/**
|
|
32
|
-
* Array of strings indicating what conditions should be used for module resolution.
|
|
33
|
-
*/
|
|
34
|
-
conditions?: string[];
|
|
35
|
-
/**
|
|
36
|
-
* Array of strings indicating what file extensions should be used for module resolution.
|
|
37
|
-
*
|
|
38
|
-
* @defaultValue `['.mjs', '.js', '.mts', '.ts', '.jsx', '.tsx', '.json']`
|
|
39
|
-
*/
|
|
40
|
-
extensions?: string[];
|
|
41
|
-
/**
|
|
42
|
-
* Array of strings indicating what modules should be deduplicated to a single version in the build.
|
|
43
|
-
*
|
|
44
|
-
* @remarks
|
|
45
|
-
* This option is useful for ensuring that only one version of a module is included in the bundle, which can help reduce bundle size and avoid conflicts.
|
|
46
|
-
*/
|
|
47
|
-
dedupe?: string[];
|
|
48
|
-
/**
|
|
49
|
-
* Array of strings or regular expressions that indicate what modules are builtin for the environment.
|
|
50
|
-
*/
|
|
51
|
-
builtins?: (string | RegExp)[];
|
|
52
|
-
/**
|
|
53
|
-
* Define global variable replacements.
|
|
54
|
-
*
|
|
55
|
-
* @remarks
|
|
56
|
-
* This option allows you to specify global constants that will be replaced in the code during the build process. It is similar to the `define` option in esbuild and Vite, enabling you to replace specific identifiers with constant expressions at build time.
|
|
57
|
-
*
|
|
58
|
-
* @example
|
|
59
|
-
* ```ts
|
|
60
|
-
* {
|
|
61
|
-
* define: {
|
|
62
|
-
* __VERSION__: '"1.0.0"',
|
|
63
|
-
* __DEV__: 'process.env.NODE_ENV !== "production"'
|
|
64
|
-
* }
|
|
65
|
-
* }
|
|
66
|
-
* ```
|
|
67
|
-
*
|
|
68
|
-
* @see https://esbuild.github.io/api/#define
|
|
69
|
-
* @see https://vitejs.dev/config/build-options.html#define
|
|
70
|
-
* @see https://github.com/rollup/plugins/tree/master/packages/replace
|
|
71
|
-
*/
|
|
72
|
-
define?: Record<string, any>;
|
|
73
|
-
/**
|
|
74
|
-
* Global variables that will have import statements injected where necessary
|
|
75
|
-
*
|
|
76
|
-
* @remarks
|
|
77
|
-
* This option allows you to specify global variables that should be automatically imported from specified modules whenever they are used in the code. This is particularly useful for polyfilling Node.js globals in a browser environment.
|
|
78
|
-
*
|
|
79
|
-
* @example
|
|
80
|
-
* ```ts
|
|
81
|
-
* {
|
|
82
|
-
* inject: {
|
|
83
|
-
* process: 'process/browser',
|
|
84
|
-
* Buffer: ['buffer', 'Buffer'],
|
|
85
|
-
* }
|
|
86
|
-
* }
|
|
87
|
-
* ```
|
|
88
|
-
*
|
|
89
|
-
* @see https://github.com/rollup/plugins/tree/master/packages/inject
|
|
90
|
-
*/
|
|
91
|
-
inject?: Record<string, string | string[]>;
|
|
92
|
-
/**
|
|
93
|
-
* The alias mappings to use for module resolution during the build process.
|
|
94
|
-
*
|
|
95
|
-
* @remarks
|
|
96
|
-
* This option allows you to define custom path aliases for modules, which can be useful for simplifying imports and managing dependencies.
|
|
97
|
-
*
|
|
98
|
-
* @example
|
|
99
|
-
* ```ts
|
|
100
|
-
* {
|
|
101
|
-
* alias: {
|
|
102
|
-
* "@utils": "./src/utils",
|
|
103
|
-
* "@components": "./src/components"
|
|
104
|
-
* }
|
|
105
|
-
* }
|
|
106
|
-
* ```
|
|
107
|
-
*
|
|
108
|
-
* @see https://github.com/rollup/plugins/tree/master/packages/alias
|
|
109
|
-
*/
|
|
110
|
-
alias?: Record<string, string> | Array<{
|
|
111
|
-
find: string | RegExp;
|
|
112
|
-
replacement: string;
|
|
113
|
-
}>;
|
|
114
|
-
/**
|
|
115
|
-
* A list of modules that should not be bundled, even if they are external dependencies.
|
|
116
|
-
*
|
|
117
|
-
* @remarks
|
|
118
|
-
* This option is useful for excluding specific modules from the bundle, such as Node.js built-in modules or other libraries that should not be bundled.
|
|
119
|
-
*/
|
|
120
|
-
external?: (string | RegExp)[];
|
|
121
|
-
/**
|
|
122
|
-
* A list of modules that should always be bundled, even if they are external dependencies.
|
|
123
|
-
*/
|
|
124
|
-
noExternal?: (string | RegExp)[];
|
|
125
|
-
/**
|
|
126
|
-
* Should the Powerlines CLI processes skip bundling the `node_modules` directory?
|
|
127
|
-
*/
|
|
128
|
-
skipNodeModulesBundle?: boolean;
|
|
129
|
-
/**
|
|
130
|
-
* If true, `process.env` referenced in code will be preserved as-is and evaluated in runtime. Otherwise, it is statically replaced as an empty object.
|
|
131
|
-
*
|
|
132
|
-
* @defaultValue false
|
|
133
|
-
*/
|
|
134
|
-
keepProcessEnv?: boolean;
|
|
135
|
-
/**
|
|
136
|
-
* An optional set of override options to apply to the selected build variant.
|
|
137
|
-
*
|
|
138
|
-
* @remarks
|
|
139
|
-
* This option allows you to provide configuration options with the guarantee that they will **not** be overridden and will take precedence over other build configurations.
|
|
140
|
-
*/
|
|
141
|
-
override?: Record<string, any>;
|
|
142
|
-
}
|
|
143
|
-
type BuildResolvedConfig = Omit<BuildConfig, "override">;
|
|
144
|
-
//#endregion
|
|
145
|
-
export { BuildConfig, BuildResolvedConfig, UnpluginBuildVariant };
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ArrayValues } from "@stryke/types/array";
|
|
2
|
-
import { MaybePromise } from "@stryke/types/base";
|
|
3
|
-
|
|
4
|
-
//#region ../powerlines/src/types/commands.d.ts
|
|
5
|
-
declare const SUPPORTED_COMMANDS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "deploy", "finalize"];
|
|
6
|
-
type CommandType = ArrayValues<typeof SUPPORTED_COMMANDS>;
|
|
7
|
-
//#endregion
|
|
8
|
-
export { CommandType };
|