@powerlines/plugin-unbuild 0.5.12 → 0.5.13
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-Do1d5FBD.d.cts → index-CTO9AiOT.d.cts} +25 -1
- package/dist/{index-Do1d5FBD.d.ts → index-CTO9AiOT.d.ts} +25 -1
- package/dist/src/index.d.cts +2 -2
- package/dist/src/index.d.ts +2 -2
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/package.json +5 -5
|
@@ -4,7 +4,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
4
4
|
import { Jiti } from 'jiti';
|
|
5
5
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
6
6
|
import { Range } from 'semver';
|
|
7
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
7
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
8
8
|
import { Format } from '@storm-software/build-tools/types';
|
|
9
9
|
import { LogLevelLabel } from '@storm-software/config-tools/types';
|
|
10
10
|
import { StormWorkspaceConfig } from '@storm-software/config/types';
|
|
@@ -941,6 +941,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
941
941
|
* A logging function for the Powerlines engine
|
|
942
942
|
*/
|
|
943
943
|
log: LogFn;
|
|
944
|
+
/**
|
|
945
|
+
* A logging function for fatal messages
|
|
946
|
+
*/
|
|
947
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
948
|
+
/**
|
|
949
|
+
* A logging function for error messages
|
|
950
|
+
*/
|
|
951
|
+
error: (message: string | UnpluginMessage) => void;
|
|
952
|
+
/**
|
|
953
|
+
* A logging function for warning messages
|
|
954
|
+
*/
|
|
955
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
956
|
+
/**
|
|
957
|
+
* A logging function for informational messages
|
|
958
|
+
*/
|
|
959
|
+
info: (message: string | UnpluginMessage) => void;
|
|
960
|
+
/**
|
|
961
|
+
* A logging function for debug messages
|
|
962
|
+
*/
|
|
963
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
964
|
+
/**
|
|
965
|
+
* A logging function for trace messages
|
|
966
|
+
*/
|
|
967
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
944
968
|
/**
|
|
945
969
|
* The metadata information
|
|
946
970
|
*/
|
|
@@ -4,7 +4,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
4
4
|
import { Jiti } from 'jiti';
|
|
5
5
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
6
6
|
import { Range } from 'semver';
|
|
7
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
7
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
8
8
|
import { Format } from '@storm-software/build-tools/types';
|
|
9
9
|
import { LogLevelLabel } from '@storm-software/config-tools/types';
|
|
10
10
|
import { StormWorkspaceConfig } from '@storm-software/config/types';
|
|
@@ -941,6 +941,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
941
941
|
* A logging function for the Powerlines engine
|
|
942
942
|
*/
|
|
943
943
|
log: LogFn;
|
|
944
|
+
/**
|
|
945
|
+
* A logging function for fatal messages
|
|
946
|
+
*/
|
|
947
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
948
|
+
/**
|
|
949
|
+
* A logging function for error messages
|
|
950
|
+
*/
|
|
951
|
+
error: (message: string | UnpluginMessage) => void;
|
|
952
|
+
/**
|
|
953
|
+
* A logging function for warning messages
|
|
954
|
+
*/
|
|
955
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
956
|
+
/**
|
|
957
|
+
* A logging function for informational messages
|
|
958
|
+
*/
|
|
959
|
+
info: (message: string | UnpluginMessage) => void;
|
|
960
|
+
/**
|
|
961
|
+
* A logging function for debug messages
|
|
962
|
+
*/
|
|
963
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
964
|
+
/**
|
|
965
|
+
* A logging function for trace messages
|
|
966
|
+
*/
|
|
967
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
944
968
|
/**
|
|
945
969
|
* The metadata information
|
|
946
970
|
*/
|
package/dist/src/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from '../index-
|
|
2
|
-
export { b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from '../index-CTO9AiOT.cjs';
|
|
2
|
+
export { b as UnbuildPluginResolvedConfig } from '../index-CTO9AiOT.cjs';
|
|
3
3
|
import '@storm-software/unbuild/types';
|
|
4
4
|
import '@stryke/env/get-env-paths';
|
|
5
5
|
import '@stryke/types/package-json';
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from '../index-
|
|
2
|
-
export { b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from '../index-CTO9AiOT.js';
|
|
2
|
+
export { b as UnbuildPluginResolvedConfig } from '../index-CTO9AiOT.js';
|
|
3
3
|
import '@storm-software/unbuild/types';
|
|
4
4
|
import '@stryke/env/get-env-paths';
|
|
5
5
|
import '@stryke/types/package-json';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-CTO9AiOT.cjs';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/package-json';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-CTO9AiOT.js';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/package-json';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-CTO9AiOT.cjs';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/package-json';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-CTO9AiOT.js';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/package-json';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-unbuild",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to build projects using Unbuild.",
|
|
6
6
|
"repository": {
|
|
@@ -134,14 +134,14 @@
|
|
|
134
134
|
"@stryke/types": "^0.10.0",
|
|
135
135
|
"defu": "^6.1.4",
|
|
136
136
|
"jiti": "^2.6.1",
|
|
137
|
-
"powerlines": "^0.
|
|
137
|
+
"powerlines": "^0.19.0",
|
|
138
138
|
"unplugin": "^2.3.10"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
|
-
"@powerlines/nx": "^0.10.
|
|
142
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
141
|
+
"@powerlines/nx": "^0.10.4",
|
|
142
|
+
"@powerlines/plugin-plugin": "^0.11.12",
|
|
143
143
|
"@types/node": "^22.19.0"
|
|
144
144
|
},
|
|
145
145
|
"publishConfig": { "access": "public" },
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "8ee43c2a7eebce6b221aa572553f4296c87fce76"
|
|
147
147
|
}
|