@powerlines/plugin-rollup 0.7.11 → 0.7.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/helpers/index.d.cts +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/dist/helpers/unplugin.d.cts +1 -1
- package/dist/helpers/unplugin.d.ts +1 -1
- package/dist/{index-BtiZvLRp.d.cts → index-CZF94EYr.d.cts} +25 -1
- package/dist/{index-BtiZvLRp.d.ts → index-CZF94EYr.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
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -944,6 +944,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
944
944
|
* A logging function for the Powerlines engine
|
|
945
945
|
*/
|
|
946
946
|
log: LogFn;
|
|
947
|
+
/**
|
|
948
|
+
* A logging function for fatal messages
|
|
949
|
+
*/
|
|
950
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
951
|
+
/**
|
|
952
|
+
* A logging function for error messages
|
|
953
|
+
*/
|
|
954
|
+
error: (message: string | UnpluginMessage) => void;
|
|
955
|
+
/**
|
|
956
|
+
* A logging function for warning messages
|
|
957
|
+
*/
|
|
958
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
959
|
+
/**
|
|
960
|
+
* A logging function for informational messages
|
|
961
|
+
*/
|
|
962
|
+
info: (message: string | UnpluginMessage) => void;
|
|
963
|
+
/**
|
|
964
|
+
* A logging function for debug messages
|
|
965
|
+
*/
|
|
966
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
967
|
+
/**
|
|
968
|
+
* A logging function for trace messages
|
|
969
|
+
*/
|
|
970
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
947
971
|
/**
|
|
948
972
|
* The metadata information
|
|
949
973
|
*/
|
|
@@ -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';
|
|
@@ -944,6 +944,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
944
944
|
* A logging function for the Powerlines engine
|
|
945
945
|
*/
|
|
946
946
|
log: LogFn;
|
|
947
|
+
/**
|
|
948
|
+
* A logging function for fatal messages
|
|
949
|
+
*/
|
|
950
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
951
|
+
/**
|
|
952
|
+
* A logging function for error messages
|
|
953
|
+
*/
|
|
954
|
+
error: (message: string | UnpluginMessage) => void;
|
|
955
|
+
/**
|
|
956
|
+
* A logging function for warning messages
|
|
957
|
+
*/
|
|
958
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
959
|
+
/**
|
|
960
|
+
* A logging function for informational messages
|
|
961
|
+
*/
|
|
962
|
+
info: (message: string | UnpluginMessage) => void;
|
|
963
|
+
/**
|
|
964
|
+
* A logging function for debug messages
|
|
965
|
+
*/
|
|
966
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
967
|
+
/**
|
|
968
|
+
* A logging function for trace messages
|
|
969
|
+
*/
|
|
970
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
947
971
|
/**
|
|
948
972
|
* The metadata information
|
|
949
973
|
*/
|
package/dist/src/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { R as RollupPluginContext, a as RollupPluginOptions, P as Plugin } from '../index-
|
|
2
|
-
export { b as RollupPluginResolvedConfig } from '../index-
|
|
1
|
+
import { R as RollupPluginContext, a as RollupPluginOptions, P as Plugin } from '../index-CZF94EYr.cjs';
|
|
2
|
+
export { b as RollupPluginResolvedConfig } from '../index-CZF94EYr.cjs';
|
|
3
3
|
export { createRollupPlugin } from '../helpers/unplugin.cjs';
|
|
4
4
|
import 'rollup';
|
|
5
5
|
import '@stryke/env/get-env-paths';
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { R as RollupPluginContext, a as RollupPluginOptions, P as Plugin } from '../index-
|
|
2
|
-
export { b as RollupPluginResolvedConfig } from '../index-
|
|
1
|
+
import { R as RollupPluginContext, a as RollupPluginOptions, P as Plugin } from '../index-CZF94EYr.js';
|
|
2
|
+
export { b as RollupPluginResolvedConfig } from '../index-CZF94EYr.js';
|
|
3
3
|
export { createRollupPlugin } from '../helpers/unplugin.js';
|
|
4
4
|
import 'rollup';
|
|
5
5
|
import '@stryke/env/get-env-paths';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-
|
|
1
|
+
export { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-CZF94EYr.cjs';
|
|
2
2
|
import 'rollup';
|
|
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 { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-
|
|
1
|
+
export { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-CZF94EYr.js';
|
|
2
2
|
import 'rollup';
|
|
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 { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-
|
|
1
|
+
export { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-CZF94EYr.cjs';
|
|
2
2
|
import 'rollup';
|
|
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 { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-
|
|
1
|
+
export { R as RollupPluginContext, a as RollupPluginOptions, b as RollupPluginResolvedConfig } from '../index-CZF94EYr.js';
|
|
2
2
|
import 'rollup';
|
|
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-rollup",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -134,15 +134,15 @@
|
|
|
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
|
"rollup": "^4.52.5",
|
|
139
139
|
"unplugin": "^2.3.10"
|
|
140
140
|
},
|
|
141
141
|
"devDependencies": {
|
|
142
|
-
"@powerlines/nx": "^0.10.
|
|
143
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
142
|
+
"@powerlines/nx": "^0.10.4",
|
|
143
|
+
"@powerlines/plugin-plugin": "^0.11.12",
|
|
144
144
|
"@types/node": "^22.19.0"
|
|
145
145
|
},
|
|
146
146
|
"publishConfig": { "access": "public" },
|
|
147
|
-
"gitHead": "
|
|
147
|
+
"gitHead": "8ee43c2a7eebce6b221aa572553f4296c87fce76"
|
|
148
148
|
}
|