@powerlines/plugin-tsc 0.2.10 → 0.2.12
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/type-check.d.cts +1 -1
- package/dist/helpers/type-check.d.ts +1 -1
- package/dist/{plugin-zj8ivj8v.d.cts → plugin-CmfMkuiM.d.cts} +25 -1
- package/dist/{plugin-zj8ivj8v.d.ts → plugin-CmfMkuiM.d.ts} +25 -1
- package/dist/src/index.d.cts +1 -1
- package/dist/src/index.d.ts +1 -1
- 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 +4 -4
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MaybePromise, NonUndefined, FunctionLike } from '@stryke/types/base';
|
|
2
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
2
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
3
3
|
import { ArrayValues } from '@stryke/types/array';
|
|
4
4
|
import { Format } from '@storm-software/build-tools/types';
|
|
5
5
|
import { LogLevelLabel } from '@storm-software/config-tools/types';
|
|
@@ -936,6 +936,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
936
936
|
* A logging function for the Powerlines engine
|
|
937
937
|
*/
|
|
938
938
|
log: LogFn;
|
|
939
|
+
/**
|
|
940
|
+
* A logging function for fatal messages
|
|
941
|
+
*/
|
|
942
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
943
|
+
/**
|
|
944
|
+
* A logging function for error messages
|
|
945
|
+
*/
|
|
946
|
+
error: (message: string | UnpluginMessage) => void;
|
|
947
|
+
/**
|
|
948
|
+
* A logging function for warning messages
|
|
949
|
+
*/
|
|
950
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
951
|
+
/**
|
|
952
|
+
* A logging function for informational messages
|
|
953
|
+
*/
|
|
954
|
+
info: (message: string | UnpluginMessage) => void;
|
|
955
|
+
/**
|
|
956
|
+
* A logging function for debug messages
|
|
957
|
+
*/
|
|
958
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
959
|
+
/**
|
|
960
|
+
* A logging function for trace messages
|
|
961
|
+
*/
|
|
962
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
939
963
|
/**
|
|
940
964
|
* The metadata information
|
|
941
965
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MaybePromise, NonUndefined, FunctionLike } from '@stryke/types/base';
|
|
2
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
2
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
3
3
|
import { ArrayValues } from '@stryke/types/array';
|
|
4
4
|
import { Format } from '@storm-software/build-tools/types';
|
|
5
5
|
import { LogLevelLabel } from '@storm-software/config-tools/types';
|
|
@@ -936,6 +936,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
936
936
|
* A logging function for the Powerlines engine
|
|
937
937
|
*/
|
|
938
938
|
log: LogFn;
|
|
939
|
+
/**
|
|
940
|
+
* A logging function for fatal messages
|
|
941
|
+
*/
|
|
942
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
943
|
+
/**
|
|
944
|
+
* A logging function for error messages
|
|
945
|
+
*/
|
|
946
|
+
error: (message: string | UnpluginMessage) => void;
|
|
947
|
+
/**
|
|
948
|
+
* A logging function for warning messages
|
|
949
|
+
*/
|
|
950
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
951
|
+
/**
|
|
952
|
+
* A logging function for informational messages
|
|
953
|
+
*/
|
|
954
|
+
info: (message: string | UnpluginMessage) => void;
|
|
955
|
+
/**
|
|
956
|
+
* A logging function for debug messages
|
|
957
|
+
*/
|
|
958
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
959
|
+
/**
|
|
960
|
+
* A logging function for trace messages
|
|
961
|
+
*/
|
|
962
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
939
963
|
/**
|
|
940
964
|
* The metadata information
|
|
941
965
|
*/
|
package/dist/src/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as Plugin } from '../plugin-
|
|
1
|
+
import { P as Plugin } from '../plugin-CmfMkuiM.cjs';
|
|
2
2
|
import { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions } from '../types/plugin.cjs';
|
|
3
3
|
export { TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig } from '../types/plugin.cjs';
|
|
4
4
|
export { typeCheck } from '../helpers/type-check.cjs';
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as Plugin } from '../plugin-
|
|
1
|
+
import { P as Plugin } from '../plugin-CmfMkuiM.js';
|
|
2
2
|
import { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions } from '../types/plugin.js';
|
|
3
3
|
export { TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig } from '../types/plugin.js';
|
|
4
4
|
export { typeCheck } from '../helpers/type-check.js';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig } from './plugin.cjs';
|
|
2
|
-
import '../plugin-
|
|
2
|
+
import '../plugin-CmfMkuiM.cjs';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import 'unplugin';
|
|
5
5
|
import '@stryke/types/array';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig } from './plugin.js';
|
|
2
|
-
import '../plugin-
|
|
2
|
+
import '../plugin-CmfMkuiM.js';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import 'unplugin';
|
|
5
5
|
import '@stryke/types/array';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { R as ResolvedConfig, a as PluginContext, U as UserConfig } from '../plugin-
|
|
1
|
+
import { R as ResolvedConfig, a as PluginContext, U as UserConfig } from '../plugin-CmfMkuiM.cjs';
|
|
2
2
|
import ts from 'typescript';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import 'unplugin';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { R as ResolvedConfig, a as PluginContext, U as UserConfig } from '../plugin-
|
|
1
|
+
import { R as ResolvedConfig, a as PluginContext, U as UserConfig } from '../plugin-CmfMkuiM.js';
|
|
2
2
|
import ts from 'typescript';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import 'unplugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-tsc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the TypeScript compiler plugin for Powerlines.",
|
|
6
6
|
"repository": {
|
|
@@ -128,10 +128,10 @@
|
|
|
128
128
|
"keywords": ["tsc", "powerlines", "storm-software", "powerlines-plugin"],
|
|
129
129
|
"dependencies": {
|
|
130
130
|
"defu": "^6.1.4",
|
|
131
|
-
"powerlines": "^0.
|
|
131
|
+
"powerlines": "^0.19.0",
|
|
132
132
|
"typescript": "^5.9.3"
|
|
133
133
|
},
|
|
134
|
-
"devDependencies": { "@powerlines/nx": "^0.10.
|
|
134
|
+
"devDependencies": { "@powerlines/nx": "^0.10.4", "@types/node": "^22.19.0" },
|
|
135
135
|
"publishConfig": { "access": "public" },
|
|
136
|
-
"gitHead": "
|
|
136
|
+
"gitHead": "8ee43c2a7eebce6b221aa572553f4296c87fce76"
|
|
137
137
|
}
|