@powerlines/plugin-tsc 0.2.46 → 0.2.47
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/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/{plugin-CMe3Y7uE.d.cts → plugin-CA7ylzcQ.d.cts} +2 -2
- package/dist/{plugin-CMe3Y7uE.d.ts → plugin-CA7ylzcQ.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 +4 -4
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.ts
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as Plugin } from './plugin-
|
|
1
|
+
import { P as Plugin } from './plugin-CA7ylzcQ.cjs';
|
|
2
2
|
import { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions } from './types/plugin.cjs';
|
|
3
3
|
export { TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig } from './types/plugin.cjs';
|
|
4
4
|
export { typeCheck } from './helpers/type-check.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as Plugin } from './plugin-
|
|
1
|
+
import { P as Plugin } from './plugin-CA7ylzcQ.js';
|
|
2
2
|
import { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions } from './types/plugin.js';
|
|
3
3
|
export { TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig } from './types/plugin.js';
|
|
4
4
|
export { typeCheck } from './helpers/type-check.js';
|
|
@@ -1465,7 +1465,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
1465
1465
|
* @param other - The other plugin to compare against.
|
|
1466
1466
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
1467
1467
|
*/
|
|
1468
|
-
dedupe?: false | ((other: Plugin<
|
|
1468
|
+
dedupe?: false | ((other: Plugin<TContext>) => boolean);
|
|
1469
1469
|
/**
|
|
1470
1470
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
1471
1471
|
*/
|
|
@@ -1476,7 +1476,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
1476
1476
|
* @param environment - The environment to check.
|
|
1477
1477
|
* @returns `true` if the plugin should be active in the specified environment, `false` otherwise.
|
|
1478
1478
|
*/
|
|
1479
|
-
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => MaybePromise<boolean | Plugin<
|
|
1479
|
+
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => MaybePromise<boolean | Plugin<TContext>>;
|
|
1480
1480
|
}
|
|
1481
1481
|
|
|
1482
1482
|
export type { Context as C, Plugin as P, ResolvedConfig as R, UserConfig as U, PluginContext as a };
|
|
@@ -1465,7 +1465,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
1465
1465
|
* @param other - The other plugin to compare against.
|
|
1466
1466
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
1467
1467
|
*/
|
|
1468
|
-
dedupe?: false | ((other: Plugin<
|
|
1468
|
+
dedupe?: false | ((other: Plugin<TContext>) => boolean);
|
|
1469
1469
|
/**
|
|
1470
1470
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
1471
1471
|
*/
|
|
@@ -1476,7 +1476,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
1476
1476
|
* @param environment - The environment to check.
|
|
1477
1477
|
* @returns `true` if the plugin should be active in the specified environment, `false` otherwise.
|
|
1478
1478
|
*/
|
|
1479
|
-
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => MaybePromise<boolean | Plugin<
|
|
1479
|
+
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => MaybePromise<boolean | Plugin<TContext>>;
|
|
1480
1480
|
}
|
|
1481
1481
|
|
|
1482
1482
|
export type { Context as C, Plugin as P, ResolvedConfig as R, UserConfig as U, PluginContext as a };
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig } from './plugin.cjs';
|
|
2
|
-
import '../plugin-
|
|
2
|
+
import '../plugin-CA7ylzcQ.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, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig } from './plugin.js';
|
|
2
|
-
import '../plugin-
|
|
2
|
+
import '../plugin-CA7ylzcQ.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-CA7ylzcQ.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-CA7ylzcQ.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.47",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the TypeScript compiler plugin for Powerlines.",
|
|
6
6
|
"repository": {
|
|
@@ -128,13 +128,13 @@
|
|
|
128
128
|
"keywords": ["tsc", "powerlines", "storm-software", "powerlines-plugin"],
|
|
129
129
|
"dependencies": {
|
|
130
130
|
"defu": "^6.1.4",
|
|
131
|
-
"powerlines": "^0.25.
|
|
131
|
+
"powerlines": "^0.25.1",
|
|
132
132
|
"typescript": "^5.9.3"
|
|
133
133
|
},
|
|
134
134
|
"devDependencies": {
|
|
135
|
-
"@powerlines/nx": "^0.10.
|
|
135
|
+
"@powerlines/nx": "^0.10.39",
|
|
136
136
|
"@types/node": "^24.10.1"
|
|
137
137
|
},
|
|
138
138
|
"publishConfig": { "access": "public" },
|
|
139
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "de1daa466d1524b287e2748490c1e56ab9002b07"
|
|
140
140
|
}
|