@powerlines/engine 0.44.0 → 0.44.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,8 +2,8 @@ const require_chunk = require('./chunk-C0xms8kb.cjs');
2
2
  let _stryke_fs_resolve = require("@stryke/fs/resolve");
3
3
  let _stryke_type_checks_is_string = require("@stryke/type-checks/is-string");
4
4
  let _powerlines_core_lib_config = require("@powerlines/core/lib/config");
5
- let _powerlines_core_lib_logger = require("@powerlines/core/lib/logger");
6
5
  let _powerlines_core_plugin_utils = require("@powerlines/core/plugin-utils");
6
+ let _powerlines_core_plugin_utils_logging = require("@powerlines/core/plugin-utils/logging");
7
7
  let _stryke_env_get_env_paths = require("@stryke/env/get-env-paths");
8
8
  let _stryke_json_storm_json = require("@stryke/json/storm-json");
9
9
  let _stryke_path_is_equal = require("@stryke/path/is-equal");
@@ -67,6 +67,15 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
67
67
  */
68
68
  configFile;
69
69
  /**
70
+ * The logger instance for the context, which can be used to create log messages with consistent formatting and metadata. This logger is extended by plugin contexts to include additional metadata such as the plugin name and category, which can be used to filter and format log messages in a more granular way.
71
+ */
72
+ get logger() {
73
+ return this.createLogger({
74
+ ...this.configFile.config,
75
+ ...this.options
76
+ });
77
+ }
78
+ /**
70
79
  * A timestamp representing when the context was initialized
71
80
  */
72
81
  get timestamp() {
@@ -76,12 +85,6 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
76
85
  return (0, _powerlines_core_plugin_utils.resolveLogLevel)(this.options.logLevel, this.options.mode);
77
86
  }
78
87
  /**
79
- * The logger function
80
- */
81
- get log() {
82
- return this.createLog();
83
- }
84
- /**
85
88
  * The environment paths for the project
86
89
  */
87
90
  get envPaths() {
@@ -110,7 +113,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
110
113
  * @param message - The message to log.
111
114
  */
112
115
  fatal(message) {
113
- this.log("error", (0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
116
+ this.logger.error((0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
114
117
  }
115
118
  /**
116
119
  * A logging function for error messages
@@ -118,7 +121,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
118
121
  * @param message - The message to log.
119
122
  */
120
123
  error(message) {
121
- this.log("error", (0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
124
+ this.logger.error((0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
122
125
  }
123
126
  /**
124
127
  * A logging function for warning messages
@@ -126,7 +129,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
126
129
  * @param message - The message to log.
127
130
  */
128
131
  warn(message) {
129
- this.log("warn", (0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
132
+ this.logger.warn((0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
130
133
  }
131
134
  /**
132
135
  * A logging function for informational messages
@@ -134,7 +137,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
134
137
  * @param message - The message to log.
135
138
  */
136
139
  info(message) {
137
- this.log("info", (0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
140
+ this.logger.info((0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
138
141
  }
139
142
  /**
140
143
  * A logging function for debug messages
@@ -142,7 +145,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
142
145
  * @param message - The message to log.
143
146
  */
144
147
  debug(message) {
145
- this.log("debug", (0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
148
+ this.logger.debug((0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
146
149
  }
147
150
  /**
148
151
  * A logging function for trace messages
@@ -150,7 +153,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
150
153
  * @param message - The message to log.
151
154
  */
152
155
  trace(message) {
153
- this.log("trace", (0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
156
+ this.logger.trace((0, _stryke_type_checks_is_string.isString)(message) ? message : _stryke_json_storm_json.StormJSON.stringify(message));
154
157
  }
155
158
  /**
156
159
  * A function to create a timer for measuring the duration of asynchronous operations
@@ -170,38 +173,31 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
170
173
  const startDuration = performance.now();
171
174
  return () => {
172
175
  const duration = performance.now() - startDuration;
173
- this.log({
174
- level: "info",
175
- category: "performance"
176
- }, `${chalk.default.bold.cyanBright(name)} completed in ${chalk.default.bold.cyanBright(duration < 1e3 ? `${duration.toFixed(2)} milliseconds` : (0, date_fns_formatDistanceToNowStrict.formatDistanceToNowStrict)(startDate))}`);
176
+ this.logger.info({
177
+ meta: { category: "performance" },
178
+ message: `${chalk.default.bold.cyanBright(name)} completed in ${chalk.default.bold.cyanBright(duration < 1e3 ? `${duration.toFixed(2)} milliseconds` : (0, date_fns_formatDistanceToNowStrict.formatDistanceToNowStrict)(startDate))}`
179
+ });
177
180
  };
178
181
  }
179
182
  /**
180
183
  * Create a new logger instance
181
184
  *
182
- * @param config - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
183
- * @returns A logger function
185
+ * @param options - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
186
+ * @returns A logger client instance that can be used to generate log messages with consistent formatting and metadata.
184
187
  */
185
- createLog(config) {
186
- return (0, _powerlines_core_lib_logger.createLogFn)({
187
- ...this.options,
188
- ...config
189
- });
188
+ createLogger(options, callback) {
189
+ return (0, _powerlines_core_plugin_utils_logging.createLogger)(this.options.name || this.options.framework || "powerlines", options, callback);
190
190
  }
191
191
  /**
192
- * Extend the current logger instance with a new source
192
+ * Extend the base logger with additional configuration options
193
193
  *
194
- * @param config - The overlay metadata to use for the badge in the log output, which can be used to customize the appearance and behavior of the log messages generated by the extended logger. This typically includes the name of the plugin or module that is creating the logger instance, and can also include other metadata such as the command or environment.
195
- * @returns A new logger function that includes the badge in its output.
194
+ * @param options - The configuration options to extend the base logger with, which can be used to add additional metadata or customize the appearance of log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance, as well as any additional metadata such as the plugin category or environment.
195
+ * @returns A new logger client instance that extends the base logger with the provided configuration options.
196
196
  */
197
- extendLog(config) {
198
- return (0, _powerlines_core_lib_logger.extendLogFn)(this.log, config);
197
+ extendLogger(options) {
198
+ return (0, _powerlines_core_plugin_utils_logging.extendLogger)(this.logger, options);
199
199
  }
200
200
  /**
201
- * A logger function specific to this context
202
- */
203
- logger;
204
- /**
205
201
  * Initialize the context with the provided configuration options
206
202
  *
207
203
  * @remarks
@@ -1,8 +1,8 @@
1
1
  import { resolvePackage } from "@stryke/fs/resolve";
2
2
  import { isString } from "@stryke/type-checks/is-string";
3
3
  import { loadUserConfigFile } from "@powerlines/core/lib/config";
4
- import { createLogFn, extendLogFn } from "@powerlines/core/lib/logger";
5
4
  import { resolveLogLevel } from "@powerlines/core/plugin-utils";
5
+ import { createLogger as createLogger$1, extendLogger } from "@powerlines/core/plugin-utils/logging";
6
6
  import { getEnvPaths } from "@stryke/env/get-env-paths";
7
7
  import { StormJSON } from "@stryke/json/storm-json";
8
8
  import { isEqual } from "@stryke/path/is-equal";
@@ -64,6 +64,15 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
64
64
  */
65
65
  configFile;
66
66
  /**
67
+ * The logger instance for the context, which can be used to create log messages with consistent formatting and metadata. This logger is extended by plugin contexts to include additional metadata such as the plugin name and category, which can be used to filter and format log messages in a more granular way.
68
+ */
69
+ get logger() {
70
+ return this.createLogger({
71
+ ...this.configFile.config,
72
+ ...this.options
73
+ });
74
+ }
75
+ /**
67
76
  * A timestamp representing when the context was initialized
68
77
  */
69
78
  get timestamp() {
@@ -73,12 +82,6 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
73
82
  return resolveLogLevel(this.options.logLevel, this.options.mode);
74
83
  }
75
84
  /**
76
- * The logger function
77
- */
78
- get log() {
79
- return this.createLog();
80
- }
81
- /**
82
85
  * The environment paths for the project
83
86
  */
84
87
  get envPaths() {
@@ -107,7 +110,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
107
110
  * @param message - The message to log.
108
111
  */
109
112
  fatal(message) {
110
- this.log("error", isString(message) ? message : StormJSON.stringify(message));
113
+ this.logger.error(isString(message) ? message : StormJSON.stringify(message));
111
114
  }
112
115
  /**
113
116
  * A logging function for error messages
@@ -115,7 +118,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
115
118
  * @param message - The message to log.
116
119
  */
117
120
  error(message) {
118
- this.log("error", isString(message) ? message : StormJSON.stringify(message));
121
+ this.logger.error(isString(message) ? message : StormJSON.stringify(message));
119
122
  }
120
123
  /**
121
124
  * A logging function for warning messages
@@ -123,7 +126,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
123
126
  * @param message - The message to log.
124
127
  */
125
128
  warn(message) {
126
- this.log("warn", isString(message) ? message : StormJSON.stringify(message));
129
+ this.logger.warn(isString(message) ? message : StormJSON.stringify(message));
127
130
  }
128
131
  /**
129
132
  * A logging function for informational messages
@@ -131,7 +134,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
131
134
  * @param message - The message to log.
132
135
  */
133
136
  info(message) {
134
- this.log("info", isString(message) ? message : StormJSON.stringify(message));
137
+ this.logger.info(isString(message) ? message : StormJSON.stringify(message));
135
138
  }
136
139
  /**
137
140
  * A logging function for debug messages
@@ -139,7 +142,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
139
142
  * @param message - The message to log.
140
143
  */
141
144
  debug(message) {
142
- this.log("debug", isString(message) ? message : StormJSON.stringify(message));
145
+ this.logger.debug(isString(message) ? message : StormJSON.stringify(message));
143
146
  }
144
147
  /**
145
148
  * A logging function for trace messages
@@ -147,7 +150,7 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
147
150
  * @param message - The message to log.
148
151
  */
149
152
  trace(message) {
150
- this.log("trace", isString(message) ? message : StormJSON.stringify(message));
153
+ this.logger.trace(isString(message) ? message : StormJSON.stringify(message));
151
154
  }
152
155
  /**
153
156
  * A function to create a timer for measuring the duration of asynchronous operations
@@ -167,38 +170,31 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
167
170
  const startDuration = performance.now();
168
171
  return () => {
169
172
  const duration = performance.now() - startDuration;
170
- this.log({
171
- level: "info",
172
- category: "performance"
173
- }, `${chalk.bold.cyanBright(name)} completed in ${chalk.bold.cyanBright(duration < 1e3 ? `${duration.toFixed(2)} milliseconds` : formatDistanceToNowStrict(startDate))}`);
173
+ this.logger.info({
174
+ meta: { category: "performance" },
175
+ message: `${chalk.bold.cyanBright(name)} completed in ${chalk.bold.cyanBright(duration < 1e3 ? `${duration.toFixed(2)} milliseconds` : formatDistanceToNowStrict(startDate))}`
176
+ });
174
177
  };
175
178
  }
176
179
  /**
177
180
  * Create a new logger instance
178
181
  *
179
- * @param config - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
180
- * @returns A logger function
182
+ * @param options - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
183
+ * @returns A logger client instance that can be used to generate log messages with consistent formatting and metadata.
181
184
  */
182
- createLog(config) {
183
- return createLogFn({
184
- ...this.options,
185
- ...config
186
- });
185
+ createLogger(options, callback) {
186
+ return createLogger$1(this.options.name || this.options.framework || "powerlines", options, callback);
187
187
  }
188
188
  /**
189
- * Extend the current logger instance with a new source
189
+ * Extend the base logger with additional configuration options
190
190
  *
191
- * @param config - The overlay metadata to use for the badge in the log output, which can be used to customize the appearance and behavior of the log messages generated by the extended logger. This typically includes the name of the plugin or module that is creating the logger instance, and can also include other metadata such as the command or environment.
192
- * @returns A new logger function that includes the badge in its output.
191
+ * @param options - The configuration options to extend the base logger with, which can be used to add additional metadata or customize the appearance of log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance, as well as any additional metadata such as the plugin category or environment.
192
+ * @returns A new logger client instance that extends the base logger with the provided configuration options.
193
193
  */
194
- extendLog(config) {
195
- return extendLogFn(this.log, config);
194
+ extendLogger(options) {
195
+ return extendLogger(this.logger, options);
196
196
  }
197
197
  /**
198
- * A logger function specific to this context
199
- */
200
- logger;
201
- /**
202
198
  * Initialize the context with the provided configuration options
203
199
  *
204
200
  * @remarks
@@ -240,4 +236,4 @@ var PowerlinesBaseContext = class PowerlinesBaseContext {
240
236
 
241
237
  //#endregion
242
238
  export { PowerlinesBaseContext as t };
243
- //# sourceMappingURL=base-context-D_ZidDDm.mjs.map
239
+ //# sourceMappingURL=base-context-Dv5OTHxZ.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base-context-Dv5OTHxZ.mjs","names":["#timestamp","createLogger"],"sources":["../src/_internal/helpers/resolver.ts","../src/context/base-context.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { ResolvedConfig, Resolver } from \"@powerlines/core\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport defu from \"defu\";\nimport { JitiOptions, createJiti } from \"jiti\";\n\nexport type CreateResolverOptions = Omit<\n JitiOptions,\n \"fsCache\" | \"moduleCache\" | \"interopDefault\"\n> &\n Pick<ResolvedConfig, \"mode\" | \"logLevel\" | \"skipCache\"> & {\n workspaceRoot: string;\n root: string;\n cacheDir: string;\n };\n\n/**\n * Create a Jiti resolver for the given workspace and project root.\n *\n * @param options - The options for creating the resolver.\n * @returns A Jiti instance configured for the specified workspace and project root.\n */\nfunction resolveOptions(options: CreateResolverOptions): JitiOptions {\n return defu(options, {\n interopDefault: true,\n fsCache:\n options.mode !== \"development\"\n ? joinPaths(options.cacheDir, \"jiti\")\n : false,\n moduleCache: options.mode !== \"development\"\n });\n}\n\n/**\n * Create a Jiti resolver for the given workspace and project root.\n *\n * @param options - The options for creating the resolver.\n * @returns A Jiti instance configured for the specified workspace and project root.\n */\nexport function createResolver(options: CreateResolverOptions): Resolver {\n const baseResolver = createJiti(\n joinPaths(options.workspaceRoot, options.root),\n resolveOptions(options)\n ) as Resolver;\n baseResolver.plugin = createJiti(\n joinPaths(options.workspaceRoot, options.root),\n resolveOptions(options)\n );\n\n return baseResolver;\n}\n","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type {\n BaseContext,\n EngineOptions,\n Logger,\n LoggerMessage,\n LoggerOptions,\n LogLevelResolvedConfig,\n LogMessage,\n ParsedUserConfig,\n ResolvedEngineOptions,\n Resolver\n} from \"@powerlines/core\";\nimport { loadUserConfigFile } from \"@powerlines/core/lib/config\";\nimport { resolveLogLevel } from \"@powerlines/core/plugin-utils\";\nimport {\n createLogger,\n extendLogger\n} from \"@powerlines/core/plugin-utils/logging\";\nimport { EnvPaths, getEnvPaths } from \"@stryke/env/get-env-paths\";\nimport { resolvePackage } from \"@stryke/fs/resolve\";\nimport { StormJSON } from \"@stryke/json/storm-json\";\nimport { isEqual } from \"@stryke/path/is-equal\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport { isString } from \"@stryke/type-checks/is-string\";\nimport chalk from \"chalk\";\nimport { formatDistanceToNowStrict } from \"date-fns/formatDistanceToNowStrict\";\nimport defu from \"defu\";\nimport { createResolver } from \"../_internal/helpers/resolver\";\n\nexport class PowerlinesBaseContext implements BaseContext {\n #timestamp: number = Date.now();\n\n /**\n * The path to the Powerlines package\n */\n public powerlinesPath!: string;\n\n /**\n * The module resolver for the project\n */\n public resolver!: Resolver;\n\n /**\n * The options provided to the Powerlines process\n */\n public options!: ResolvedEngineOptions;\n\n /**\n * The input options used to initialize the context, which may be used when cloning the context to ensure the same configuration is applied to the new context\n */\n public inputOptions: Partial<EngineOptions> = {};\n\n /**\n * The parsed configuration file for the project\n */\n public configFile!: ParsedUserConfig;\n\n /**\n * The logger instance for the context, which can be used to create log messages with consistent formatting and metadata. This logger is extended by plugin contexts to include additional metadata such as the plugin name and category, which can be used to filter and format log messages in a more granular way.\n */\n public get logger(): Logger {\n return this.createLogger({ ...this.configFile.config, ...this.options });\n }\n\n /**\n * A timestamp representing when the context was initialized\n */\n public get timestamp(): number {\n return this.#timestamp;\n }\n\n public get logLevel(): LogLevelResolvedConfig {\n return resolveLogLevel(this.options.logLevel, this.options.mode);\n }\n\n /**\n * The environment paths for the project\n */\n public get envPaths(): EnvPaths {\n return getEnvPaths({\n orgId: this.options.organization,\n appId: this.options.framework || \"powerlines\",\n workspaceRoot: this.options.cwd\n });\n }\n\n /**\n * Creates a clone of the current context with the same configuration and workspace settings. This can be useful for running multiple builds in parallel or for creating isolated contexts for different parts of the build process.\n *\n * @remarks\n * The cloned context will have the same configuration and workspace settings as the original context, but will have a different build ID, release ID, and timestamp. The virtual file system and caches will also be separate between the original and cloned contexts.\n *\n * @returns A promise that resolves to the cloned context.\n */\n public async clone(): Promise<BaseContext> {\n const clone = new PowerlinesBaseContext();\n await clone.init(this.options);\n\n return clone;\n }\n\n /**\n * A logging function for fatal messages\n *\n * @param message - The message to log.\n */\n public fatal(message: string | LogMessage) {\n this.logger.error(\n isString(message) ? message : StormJSON.stringify(message)\n );\n }\n\n /**\n * A logging function for error messages\n *\n * @param message - The message to log.\n */\n public error(message: string | LogMessage) {\n this.logger.error(\n isString(message) ? message : StormJSON.stringify(message)\n );\n }\n\n /**\n * A logging function for warning messages\n *\n * @param message - The message to log.\n */\n public warn(message: string | LogMessage) {\n this.logger.warn(\n isString(message) ? message : StormJSON.stringify(message)\n );\n }\n\n /**\n * A logging function for informational messages\n *\n * @param message - The message to log.\n */\n public info(message: string | LogMessage) {\n this.logger.info(\n isString(message) ? message : StormJSON.stringify(message)\n );\n }\n\n /**\n * A logging function for debug messages\n *\n * @param message - The message to log.\n */\n public debug(message: string | LogMessage) {\n this.logger.debug(\n isString(message) ? message : StormJSON.stringify(message)\n );\n }\n\n /**\n * A logging function for trace messages\n *\n * @param message - The message to log.\n */\n public trace(message: string | LogMessage) {\n this.logger.trace(\n isString(message) ? message : StormJSON.stringify(message)\n );\n }\n\n /**\n * A function to create a timer for measuring the duration of asynchronous operations\n *\n * @example\n * ```ts\n * const stopTimer = context.timer(\"Your Async Operation\");\n * await performAsyncOperation();\n * stopTimer(); // \"Your Async Operation completed in 123.45 milliseconds\"\n * ```\n *\n * @param name - The name of the timer.\n * @returns A function that, when called, stops the timer and logs the duration.\n */\n public timer(name: string): () => void {\n const startDate = Date.now();\n const startDuration = performance.now();\n\n return () => {\n const duration = performance.now() - startDuration;\n this.logger.info({\n meta: {\n category: \"performance\"\n },\n message: `${chalk.bold.cyanBright(name)} completed in ${chalk.bold.cyanBright(\n duration < 1000\n ? `${duration.toFixed(2)} milliseconds`\n : formatDistanceToNowStrict(startDate)\n )}`\n });\n };\n }\n\n /**\n * Create a new logger instance\n *\n * @param options - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.\n * @returns A logger client instance that can be used to generate log messages with consistent formatting and metadata.\n */\n public createLogger(\n options: LoggerOptions,\n callback?: (message: string | LoggerMessage) => void\n ): Logger {\n return createLogger(\n this.options.name || this.options.framework || \"powerlines\",\n options,\n callback\n );\n }\n\n /**\n * Extend the base logger with additional configuration options\n *\n * @param options - The configuration options to extend the base logger with, which can be used to add additional metadata or customize the appearance of log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance, as well as any additional metadata such as the plugin category or environment.\n * @returns A new logger client instance that extends the base logger with the provided configuration options.\n */\n public extendLogger(options: LoggerOptions): Logger {\n return extendLogger(this.logger, options);\n }\n\n /**\n * Initialize the context with the provided configuration options\n *\n * @remarks\n * This method will set up the resolver and load the user configuration file based on the provided options. It is called during the construction of the context and can also be called when cloning the context to ensure that the new context has the same configuration and resolver setup.\n *\n * @param options - The configuration options to initialize the context with\n */\n protected async init(options: Partial<EngineOptions> = {}) {\n this.inputOptions = { ...options };\n\n if (!this.powerlinesPath) {\n const powerlinesPath = await resolvePackage(\"powerlines\");\n if (!powerlinesPath) {\n throw new Error(\"Could not resolve `powerlines` package location.\");\n }\n this.powerlinesPath = powerlinesPath;\n }\n\n const cwd = options.cwd || this.options?.cwd || process.cwd();\n const root = replacePath(\n (options.root || this.options?.root) &&\n (options.root || this.options.root).replace(/^\\.\\/?/, \"\") &&\n !isEqual(options.root || this.options.root, cwd)\n ? options.root || this.options.root\n : \".\",\n cwd\n );\n\n this.options = defu(\n {\n root,\n cwd,\n mode: options.mode,\n logLevel: options.logLevel,\n framework: options.framework,\n organization: options.organization,\n configFile: options.configFile\n },\n this.options ?? {},\n {\n mode: \"production\",\n framework: \"powerlines\"\n }\n ) as ResolvedEngineOptions;\n\n this.resolver = createResolver({\n workspaceRoot: cwd,\n root,\n cacheDir: this.envPaths.cache,\n mode: this.options.mode,\n logLevel: this.logLevel\n });\n\n this.configFile = await loadUserConfigFile(this.options, this.resolver);\n }\n}\n"],"mappings":"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"}
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
- const require_base_context = require('../base-context-5_AZZYFu.cjs');
3
- const require_engine_context = require('../engine-context-w4fts28j.cjs');
4
- const require_execution_context = require('../execution-context-0GmpbWbs.cjs');
2
+ const require_base_context = require('../base-context-DkGTyGX0.cjs');
3
+ const require_engine_context = require('../engine-context-CDSR7PHF.cjs');
4
+ const require_execution_context = require('../execution-context-B-CVP76S.cjs');
5
5
 
6
6
  exports.PowerlinesBaseContext = require_base_context.PowerlinesBaseContext;
7
7
  exports.PowerlinesContext = require_execution_context.PowerlinesContext;
@@ -1,4 +1,4 @@
1
- import { BaseContext, Context, EmitEntryOptions, EmitOptions, EngineContext, EngineOptions, EnvironmentContext, EnvironmentContextPlugin, EnvironmentResolvedConfig, ExecutionContext, ExecutionOptions, ExecutionState, FetchOptions, HooksList, InlineConfig, LogFn, LogFnConfig, LogLevelResolvedConfig, MetaInfo, ParseOptions, ParsedTypeScriptConfig, ParsedUserConfig, Plugin, PluginContext, PowerlinesMessage, ResolveOptions, ResolveResult, ResolvedConfig, ResolvedEngineOptions, ResolvedEntryTypeDefinition, ResolvedExecutionOptions, Resolver, SelectHookResult, SelectHooksOptions, TransformResult, VirtualFile, VirtualFileSystemInterface } from "@powerlines/core";
1
+ import { BaseContext, Context, EmitEntryOptions, EmitOptions, EngineContext, EngineOptions, EnvironmentContext, EnvironmentContextPlugin, EnvironmentResolvedConfig, ExecutionContext, ExecutionOptions, ExecutionState, FetchOptions, HooksList, InlineConfig, LogLevelResolvedConfig, LogMessage, Logger, LoggerMessage, LoggerOptions, MetaInfo, ParseOptions, ParsedTypeScriptConfig, ParsedUserConfig, Plugin, PluginContext, ResolveOptions, ResolveResult, ResolvedConfig, ResolvedEngineOptions, ResolvedEntryTypeDefinition, ResolvedExecutionOptions, Resolver, SelectHookResult, SelectHooksOptions, TransformResult, VirtualFile, VirtualFileSystemInterface } from "@powerlines/core";
2
2
  import { EnvPaths } from "@stryke/env/get-env-paths";
3
3
  import { Unstable_ContextInternal, Unstable_EnvironmentContext, Unstable_PluginContext } from "@powerlines/core/types/_internal";
4
4
  import { PackageJson } from "@stryke/types/package-json";
@@ -30,15 +30,15 @@ declare class PowerlinesBaseContext implements BaseContext {
30
30
  * The parsed configuration file for the project
31
31
  */
32
32
  configFile: ParsedUserConfig;
33
+ /**
34
+ * The logger instance for the context, which can be used to create log messages with consistent formatting and metadata. This logger is extended by plugin contexts to include additional metadata such as the plugin name and category, which can be used to filter and format log messages in a more granular way.
35
+ */
36
+ get logger(): Logger;
33
37
  /**
34
38
  * A timestamp representing when the context was initialized
35
39
  */
36
40
  get timestamp(): number;
37
41
  get logLevel(): LogLevelResolvedConfig;
38
- /**
39
- * The logger function
40
- */
41
- get log(): LogFn;
42
42
  /**
43
43
  * The environment paths for the project
44
44
  */
@@ -57,37 +57,37 @@ declare class PowerlinesBaseContext implements BaseContext {
57
57
  *
58
58
  * @param message - The message to log.
59
59
  */
60
- fatal(message: string | PowerlinesMessage): void;
60
+ fatal(message: string | LogMessage): void;
61
61
  /**
62
62
  * A logging function for error messages
63
63
  *
64
64
  * @param message - The message to log.
65
65
  */
66
- error(message: string | PowerlinesMessage): void;
66
+ error(message: string | LogMessage): void;
67
67
  /**
68
68
  * A logging function for warning messages
69
69
  *
70
70
  * @param message - The message to log.
71
71
  */
72
- warn(message: string | PowerlinesMessage): void;
72
+ warn(message: string | LogMessage): void;
73
73
  /**
74
74
  * A logging function for informational messages
75
75
  *
76
76
  * @param message - The message to log.
77
77
  */
78
- info(message: string | PowerlinesMessage): void;
78
+ info(message: string | LogMessage): void;
79
79
  /**
80
80
  * A logging function for debug messages
81
81
  *
82
82
  * @param message - The message to log.
83
83
  */
84
- debug(message: string | PowerlinesMessage): void;
84
+ debug(message: string | LogMessage): void;
85
85
  /**
86
86
  * A logging function for trace messages
87
87
  *
88
88
  * @param message - The message to log.
89
89
  */
90
- trace(message: string | PowerlinesMessage): void;
90
+ trace(message: string | LogMessage): void;
91
91
  /**
92
92
  * A function to create a timer for measuring the duration of asynchronous operations
93
93
  *
@@ -105,21 +105,17 @@ declare class PowerlinesBaseContext implements BaseContext {
105
105
  /**
106
106
  * Create a new logger instance
107
107
  *
108
- * @param config - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
109
- * @returns A logger function
108
+ * @param options - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
109
+ * @returns A logger client instance that can be used to generate log messages with consistent formatting and metadata.
110
110
  */
111
- createLog(config?: LogFnConfig): LogFn;
111
+ createLogger(options: LoggerOptions, callback?: (message: string | LoggerMessage) => void): Logger;
112
112
  /**
113
- * Extend the current logger instance with a new source
113
+ * Extend the base logger with additional configuration options
114
114
  *
115
- * @param config - The overlay metadata to use for the badge in the log output, which can be used to customize the appearance and behavior of the log messages generated by the extended logger. This typically includes the name of the plugin or module that is creating the logger instance, and can also include other metadata such as the command or environment.
116
- * @returns A new logger function that includes the badge in its output.
115
+ * @param options - The configuration options to extend the base logger with, which can be used to add additional metadata or customize the appearance of log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance, as well as any additional metadata such as the plugin category or environment.
116
+ * @returns A new logger client instance that extends the base logger with the provided configuration options.
117
117
  */
118
- extendLog(config: LogFnConfig): LogFn;
119
- /**
120
- * A logger function specific to this context
121
- */
122
- protected logger: Logger;
118
+ extendLogger(options: LoggerOptions): Logger;
123
119
  /**
124
120
  * Initialize the context with the provided configuration options
125
121
  *
@@ -262,6 +258,10 @@ declare class PowerlinesContext<TResolvedConfig extends ResolvedConfig = Resolve
262
258
  * This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
263
259
  */
264
260
  get alias(): Record<string, string>;
261
+ /**
262
+ * The logger instance for the context, which can be used to create log messages with consistent formatting and metadata. This logger is extended by plugin contexts to include additional metadata such as the plugin name and category, which can be used to filter and format log messages in a more granular way.
263
+ */
264
+ get logger(): Logger;
265
265
  /**
266
266
  * Gets the parser cache.
267
267
  */
@@ -280,20 +280,6 @@ declare class PowerlinesContext<TResolvedConfig extends ResolvedConfig = Resolve
280
280
  * @param options - The options to use for creating the context, including the resolved configuration and workspace settings.
281
281
  */
282
282
  protected constructor(options: ResolvedExecutionOptions);
283
- /**
284
- * Create a new log function with the specified configuration, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the logger instance according to your needs.
285
- *
286
- * @param config - Optional configuration for the log function instance, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the logger instance according to your needs.
287
- * @returns A log function that can be used to log messages with the specified configuration.
288
- */
289
- createLog(config?: LogFnConfig): LogFn;
290
- /**
291
- * Extend the current log function instance with a new name
292
- *
293
- * @param config - The configuration for the extended log function instance, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the log function instance according to your needs.
294
- * @returns A log function
295
- */
296
- extendLog(config: LogFnConfig): LogFn;
297
283
  /**
298
284
  * Creates a clone of the current context with the same configuration and workspace settings. This can be useful for running multiple builds in parallel or for creating isolated contexts for different parts of the build process.
299
285
  *
@@ -526,19 +512,19 @@ declare class PowerlinesEnvironmentContext<TResolvedConfig extends ResolvedConfi
526
512
  */
527
513
  get hooks(): Record<string, HooksList<PluginContext<TResolvedConfig>>>;
528
514
  /**
529
- * Create a new log function with the specified configuration, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the logger instance according to your needs.
515
+ * Create a new logger instance
530
516
  *
531
- * @param config - Optional configuration for the log function instance, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the logger instance according to your needs.
532
- * @returns A log function that can be used to log messages with the specified configuration.
517
+ * @param options - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
518
+ * @returns A logger client instance that can be used to generate log messages with consistent formatting and metadata.
533
519
  */
534
- createLog(config?: LogFnConfig): LogFn;
520
+ createLogger(options: LoggerOptions, callback?: (message: string | LoggerMessage) => void): Logger;
535
521
  /**
536
- * Extend the current log function instance with a new name
522
+ * Extend the base logger with additional configuration options
537
523
  *
538
- * @param config - The configuration for the extended log function instance, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the log function instance according to your needs.
539
- * @returns A log function
524
+ * @param options - The configuration options to extend the base logger with, which can be used to add additional metadata or customize the appearance of log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance, as well as any additional metadata such as the plugin category or environment.
525
+ * @returns A new logger client instance that extends the base logger with the provided configuration options.
540
526
  */
541
- extendLog(config: LogFnConfig): LogFn;
527
+ extendLogger(options: LoggerOptions): Logger;
542
528
  /**
543
529
  * Creates a clone of the current context with the same configuration and workspace settings. This can be useful for running multiple builds in parallel or for creating isolated contexts for different parts of the build process.
544
530
  *
@@ -620,19 +606,19 @@ declare class PowerlinesExecutionContext<TResolvedConfig extends ResolvedConfig
620
606
  */
621
607
  protected constructor(options: ResolvedExecutionOptions);
622
608
  /**
623
- * Create a new log function with the specified configuration, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the logger instance according to your needs.
609
+ * Create a new logger instance
624
610
  *
625
- * @param config - Optional configuration for the log function instance, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the logger instance according to your needs.
626
- * @returns A log function that can be used to log messages with the specified configuration.
611
+ * @param options - The configuration options to use for the logger instance, which can be used to customize the appearance and behavior of the log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance.
612
+ * @returns A logger client instance that can be used to generate log messages with consistent formatting and metadata.
627
613
  */
628
- createLog(config?: LogFnConfig): LogFn;
614
+ createLogger(options: LoggerOptions, callback?: (message: string | LoggerMessage) => void): Logger;
629
615
  /**
630
- * Extend the current log function instance with a new name
616
+ * Extend the base logger with additional configuration options
631
617
  *
632
- * @param config - The configuration for the extended log function instance, which can include properties such as log level, colors, and other metadata to be included with each log message. This allows you to customize the behavior and appearance of the log function instance according to your needs.
633
- * @returns A log function
618
+ * @param options - The configuration options to extend the base logger with, which can be used to add additional metadata or customize the appearance of log messages generated by the logger. This is typically the name of the plugin or module that is creating the logger instance, as well as any additional metadata such as the plugin category or environment.
619
+ * @returns A new logger client instance that extends the base logger with the provided configuration options.
634
620
  */
635
- extendLog(config: LogFnConfig): LogFn;
621
+ extendLogger(options: LoggerOptions): Logger;
636
622
  /**
637
623
  * Creates a clone of the current context with the same configuration and workspace settings. This can be useful for running multiple builds in parallel or for creating isolated contexts for different parts of the build process.
638
624
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../../src/context/base-context.ts","../../src/context/context.ts","../../src/context/engine-context.ts","../../src/context/environment-context.ts","../../src/context/execution-context.ts","../../src/context/plugin-context.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../../src/context/base-context.ts","../../src/context/context.ts","../../src/context/engine-context.ts","../../src/context/environment-context.ts","../../src/context/execution-context.ts","../../src/context/plugin-context.ts"],"mappings":"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"}