@powerlines/core 0.48.56 → 0.48.58
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/constants/log-level.d.cts +1 -1
- package/dist/constants/log-level.d.mts +1 -1
- package/dist/context/context.cjs +4 -2
- package/dist/context/context.d.cts +3 -3
- package/dist/context/context.d.cts.map +1 -1
- package/dist/context/context.d.mts +3 -3
- package/dist/context/context.d.mts.map +1 -1
- package/dist/context/context.mjs +4 -2
- package/dist/context/context.mjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/lib/vfs.cjs +45 -8
- package/dist/lib/vfs.d.cts +16 -2
- package/dist/lib/vfs.d.cts.map +1 -1
- package/dist/lib/vfs.d.mts +16 -2
- package/dist/lib/vfs.d.mts.map +1 -1
- package/dist/lib/vfs.mjs +45 -8
- package/dist/lib/vfs.mjs.map +1 -1
- package/dist/storage/base.d.cts +4 -4
- package/dist/storage/base.d.cts.map +1 -1
- package/dist/storage/base.d.mts +4 -4
- package/dist/storage/base.d.mts.map +1 -1
- package/dist/storage/base.mjs.map +1 -1
- package/dist/storage/file-system.cjs +6 -2
- package/dist/storage/file-system.d.cts +2 -2
- package/dist/storage/file-system.d.cts.map +1 -1
- package/dist/storage/file-system.d.mts +2 -2
- package/dist/storage/file-system.d.mts.map +1 -1
- package/dist/storage/file-system.mjs +6 -2
- package/dist/storage/file-system.mjs.map +1 -1
- package/dist/storage/virtual.d.cts +2 -2
- package/dist/storage/virtual.d.cts.map +1 -1
- package/dist/storage/virtual.d.mts +2 -2
- package/dist/storage/virtual.d.mts.map +1 -1
- package/dist/storage/virtual.mjs.map +1 -1
- package/dist/types/context.d.cts +15 -3
- package/dist/types/context.d.cts.map +1 -1
- package/dist/types/context.d.mts +15 -3
- package/dist/types/context.d.mts.map +1 -1
- package/dist/types/fs.d.cts +19 -6
- package/dist/types/fs.d.cts.map +1 -1
- package/dist/types/fs.d.mts +19 -6
- package/dist/types/fs.d.mts.map +1 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/package.json +7 -7
package/dist/types/index.d.cts
CHANGED
|
@@ -5,5 +5,5 @@ import { BasePlugin, HookFunctions, Hooks, Plugin, PluginHook, PluginHookFields,
|
|
|
5
5
|
import { CallHookOptions, HookListOrders, HooksList, HooksListItem, InferHookFunction, InferHookParameters, InferHookReturnType, InferHookThisType, NormalizedStringFilter, PluginFilter, TransformHookFilter } from "./hooks.cjs";
|
|
6
6
|
import { CustomLogger, CustomLoggerMessage, LogCategory, LogFn, LogFnMeta, LogFnOptions, LogLevel, LogLevelResolvedConfig, LogLevelUserConfig, LogMessage, LogMeta, Logger, LoggerMessage, LoggerMeta, LoggerOptions, PowerlinesMessage } from "./logging.cjs";
|
|
7
7
|
import { DeepkitOptions, Level, ParsedTypeScriptConfig, RawReflectionMode, ReflectionMode, TSCompilerOptions, TSConfig } from "./tsconfig.cjs";
|
|
8
|
-
import { BaseContext, BuildPluginContext, Context, EmitEntryOptions, EmitOptions, EnvironmentContext, EnvironmentPlugin, ExecutionContext, FetchOptions, InitContextOptions, MetaInfo, ParseOptions, PluginContext, ResolveResult, Resolver, SelectHookResult, SelectHookResultItem, SelectHooksOptions, SourceFile, TransformResult, UnimportContext, UnresolvedContext, WithUnpluginBuildContext } from "./context.cjs";
|
|
8
|
+
import { BaseContext, BuildPluginContext, Context, EmitBuiltinOptions, EmitEntryOptions, EmitOptions, EnvironmentContext, EnvironmentPlugin, ExecutionContext, FetchOptions, InitContextOptions, MetaInfo, ParseOptions, PluginContext, ResolveResult, Resolver, SelectHookResult, SelectHookResultItem, SelectHooksOptions, SourceFile, TransformResult, UnimportContext, UnresolvedContext, WithUnpluginBuildContext } from "./context.cjs";
|
|
9
9
|
import { BaseExecutionOptions, BuildInlineConfig, CleanInlineConfig, Config, ConfigParams, CopyConfig, CreateInlineConfig, DeployInlineConfig, DocsInlineConfig, EnvironmentConfig, EnvironmentResolvedConfig, ExecutionOptions, FrameworkOptions, InferOverridableConfig, InlineConfig, InlineConfigPaths, LintInlineConfig, Mode, Options, OutputConfig, ParsedUserConfig, PartialPlugin, PartialPluginFactory, PluginConfig, PluginConfigObject, PluginConfigTuple, PluginFactory, PrepareInlineConfig, ProjectType, ResolveConfig, ResolvedAssetGlob, ResolvedConfig, ResolvedCopyConfig, ResolvedEntryFileReference, ResolvedEnvironmentConfig, ResolvedOutputConfig, ResolvedResolveConfig, TestInlineConfig, TypesInlineConfig, UserConfig, UserConfigExport, UserConfigFn, UserConfigFnObject, UserConfigFnPromise, WorkspaceConfig } from "./config.cjs";
|
package/dist/types/index.d.mts
CHANGED
|
@@ -5,5 +5,5 @@ import { BasePlugin, HookFunctions, Hooks, Plugin, PluginHook, PluginHookFields,
|
|
|
5
5
|
import { CallHookOptions, HookListOrders, HooksList, HooksListItem, InferHookFunction, InferHookParameters, InferHookReturnType, InferHookThisType, NormalizedStringFilter, PluginFilter, TransformHookFilter } from "./hooks.mjs";
|
|
6
6
|
import { CustomLogger, CustomLoggerMessage, LogCategory, LogFn, LogFnMeta, LogFnOptions, LogLevel, LogLevelResolvedConfig, LogLevelUserConfig, LogMessage, LogMeta, Logger, LoggerMessage, LoggerMeta, LoggerOptions, PowerlinesMessage } from "./logging.mjs";
|
|
7
7
|
import { DeepkitOptions, Level, ParsedTypeScriptConfig, RawReflectionMode, ReflectionMode, TSCompilerOptions, TSConfig } from "./tsconfig.mjs";
|
|
8
|
-
import { BaseContext, BuildPluginContext, Context, EmitEntryOptions, EmitOptions, EnvironmentContext, EnvironmentPlugin, ExecutionContext, FetchOptions, InitContextOptions, MetaInfo, ParseOptions, PluginContext, ResolveResult, Resolver, SelectHookResult, SelectHookResultItem, SelectHooksOptions, SourceFile, TransformResult, UnimportContext, UnresolvedContext, WithUnpluginBuildContext } from "./context.mjs";
|
|
8
|
+
import { BaseContext, BuildPluginContext, Context, EmitBuiltinOptions, EmitEntryOptions, EmitOptions, EnvironmentContext, EnvironmentPlugin, ExecutionContext, FetchOptions, InitContextOptions, MetaInfo, ParseOptions, PluginContext, ResolveResult, Resolver, SelectHookResult, SelectHookResultItem, SelectHooksOptions, SourceFile, TransformResult, UnimportContext, UnresolvedContext, WithUnpluginBuildContext } from "./context.mjs";
|
|
9
9
|
import { BaseExecutionOptions, BuildInlineConfig, CleanInlineConfig, Config, ConfigParams, CopyConfig, CreateInlineConfig, DeployInlineConfig, DocsInlineConfig, EnvironmentConfig, EnvironmentResolvedConfig, ExecutionOptions, FrameworkOptions, InferOverridableConfig, InlineConfig, InlineConfigPaths, LintInlineConfig, Mode, Options, OutputConfig, ParsedUserConfig, PartialPlugin, PartialPluginFactory, PluginConfig, PluginConfigObject, PluginConfigTuple, PluginFactory, PrepareInlineConfig, ProjectType, ResolveConfig, ResolvedAssetGlob, ResolvedConfig, ResolvedCopyConfig, ResolvedEntryFileReference, ResolvedEnvironmentConfig, ResolvedOutputConfig, ResolvedResolveConfig, TestInlineConfig, TypesInlineConfig, UserConfig, UserConfigExport, UserConfigFn, UserConfigFnObject, UserConfigFnPromise, WorkspaceConfig } from "./config.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/core",
|
|
3
|
-
"version": "0.48.
|
|
3
|
+
"version": "0.48.58",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An internal core package for Powerlines - please use the `powerlines` package for public usage.",
|
|
6
6
|
"homepage": "https://stormsoftware.com",
|
|
@@ -327,9 +327,9 @@
|
|
|
327
327
|
"@donedeal0/superdiff": "^3.2.0",
|
|
328
328
|
"@jridgewell/sourcemap-codec": "^1.5.5",
|
|
329
329
|
"@rolldown/pluginutils": "^1.0.1",
|
|
330
|
-
"@storm-software/config": "^1.
|
|
331
|
-
"@storm-software/config-tools": "^1.190.
|
|
332
|
-
"@storm-software/prettier": "^0.59.
|
|
330
|
+
"@storm-software/config": "^1.138.6",
|
|
331
|
+
"@storm-software/config-tools": "^1.190.69",
|
|
332
|
+
"@storm-software/prettier": "^0.59.122",
|
|
333
333
|
"@stryke/capnp": "^0.12.111",
|
|
334
334
|
"@stryke/convert": "^0.7.15",
|
|
335
335
|
"@stryke/env": "^0.20.102",
|
|
@@ -364,11 +364,11 @@
|
|
|
364
364
|
"unplugin-combine": "^2.4.0"
|
|
365
365
|
},
|
|
366
366
|
"devDependencies": {
|
|
367
|
-
"@storm-software/testing-tools": "^1.119.
|
|
367
|
+
"@storm-software/testing-tools": "^1.119.222",
|
|
368
368
|
"@stryke/types": "^0.12.12",
|
|
369
369
|
"@types/bun": "^1.3.14",
|
|
370
370
|
"@types/diff-match-patch": "^1.0.36",
|
|
371
|
-
"@types/node": "^25.9.
|
|
371
|
+
"@types/node": "^25.9.3",
|
|
372
372
|
"@types/picomatch": "^4.0.3",
|
|
373
373
|
"@types/semver": "^7.7.1",
|
|
374
374
|
"bun-types-no-globals": "^1.3.11",
|
|
@@ -378,5 +378,5 @@
|
|
|
378
378
|
"undici-types": "^7.27.2"
|
|
379
379
|
},
|
|
380
380
|
"publishConfig": { "access": "public" },
|
|
381
|
-
"gitHead": "
|
|
381
|
+
"gitHead": "7bc932dbec843729ebecf5a95f0f31ff9d53f4da"
|
|
382
382
|
}
|