@powerlines/plugin-tsup 0.12.14 → 0.12.15
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-FYhufNdW.d.cts → index-C_qoO2U3.d.cts} +3 -3
- package/dist/{index-FYhufNdW.d.ts → index-C_qoO2U3.d.ts} +3 -3
- package/dist/index.d.cts +2 -2
- package/dist/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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { createTsupPlugin } from './unplugin.cjs';
|
|
2
2
|
import 'esbuild';
|
|
3
|
-
import '../index-
|
|
3
|
+
import '../index-C_qoO2U3.cjs';
|
|
4
4
|
import '@storm-software/tsup/types';
|
|
5
5
|
import '@storm-software/build-tools/types';
|
|
6
6
|
import '@storm-software/config-tools/types';
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as esbuild from 'esbuild';
|
|
2
|
-
import { T as TsupPluginContext } from '../index-
|
|
2
|
+
import { T as TsupPluginContext } from '../index-C_qoO2U3.cjs';
|
|
3
3
|
import '@storm-software/tsup/types';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as esbuild from 'esbuild';
|
|
2
|
-
import { T as TsupPluginContext } from '../index-
|
|
2
|
+
import { T as TsupPluginContext } from '../index-C_qoO2U3.js';
|
|
3
3
|
import '@storm-software/tsup/types';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
|
@@ -1111,7 +1111,7 @@ type BuildPluginContext<TResolvedConfig extends ResolvedConfig = ResolvedConfig>
|
|
|
1111
1111
|
declare const SUPPORTED_COMMANDS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "release", "finalize"];
|
|
1112
1112
|
type CommandType = ArrayValues<typeof SUPPORTED_COMMANDS>;
|
|
1113
1113
|
|
|
1114
|
-
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter
|
|
1114
|
+
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> {
|
|
1115
1115
|
/**
|
|
1116
1116
|
* The order in which the plugin should be applied.
|
|
1117
1117
|
*/
|
|
@@ -1119,13 +1119,13 @@ interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends k
|
|
|
1119
1119
|
/**
|
|
1120
1120
|
* A filter to determine when the hook should be called.
|
|
1121
1121
|
*/
|
|
1122
|
-
filter?: TFilter
|
|
1122
|
+
filter?: Pick<HookFilter, TFilter>;
|
|
1123
1123
|
/**
|
|
1124
1124
|
* The hook function to be called.
|
|
1125
1125
|
*/
|
|
1126
1126
|
handler: THookFunction;
|
|
1127
1127
|
}
|
|
1128
|
-
type PluginHook<THookFunction extends FunctionLike, TFilter extends keyof HookFilter
|
|
1128
|
+
type PluginHook<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> = THookFunction | PluginHookObject<THookFunction, TFilter>;
|
|
1129
1129
|
/**
|
|
1130
1130
|
* A result returned by the plugin from the `generateTypes` hook that describes the declaration types output file.
|
|
1131
1131
|
*/
|
|
@@ -1111,7 +1111,7 @@ type BuildPluginContext<TResolvedConfig extends ResolvedConfig = ResolvedConfig>
|
|
|
1111
1111
|
declare const SUPPORTED_COMMANDS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "release", "finalize"];
|
|
1112
1112
|
type CommandType = ArrayValues<typeof SUPPORTED_COMMANDS>;
|
|
1113
1113
|
|
|
1114
|
-
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter
|
|
1114
|
+
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> {
|
|
1115
1115
|
/**
|
|
1116
1116
|
* The order in which the plugin should be applied.
|
|
1117
1117
|
*/
|
|
@@ -1119,13 +1119,13 @@ interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends k
|
|
|
1119
1119
|
/**
|
|
1120
1120
|
* A filter to determine when the hook should be called.
|
|
1121
1121
|
*/
|
|
1122
|
-
filter?: TFilter
|
|
1122
|
+
filter?: Pick<HookFilter, TFilter>;
|
|
1123
1123
|
/**
|
|
1124
1124
|
* The hook function to be called.
|
|
1125
1125
|
*/
|
|
1126
1126
|
handler: THookFunction;
|
|
1127
1127
|
}
|
|
1128
|
-
type PluginHook<THookFunction extends FunctionLike, TFilter extends keyof HookFilter
|
|
1128
|
+
type PluginHook<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> = THookFunction | PluginHookObject<THookFunction, TFilter>;
|
|
1129
1129
|
/**
|
|
1130
1130
|
* A result returned by the plugin from the `generateTypes` hook that describes the declaration types output file.
|
|
1131
1131
|
*/
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from './index-
|
|
1
|
+
import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-C_qoO2U3.cjs';
|
|
2
|
+
export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from './index-C_qoO2U3.cjs';
|
|
3
3
|
export { createTsupPlugin } from './helpers/unplugin.cjs';
|
|
4
4
|
import '@storm-software/tsup/types';
|
|
5
5
|
import '@storm-software/build-tools/types';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from './index-
|
|
1
|
+
import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-C_qoO2U3.js';
|
|
2
|
+
export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from './index-C_qoO2U3.js';
|
|
3
3
|
export { createTsupPlugin } from './helpers/unplugin.js';
|
|
4
4
|
import '@storm-software/tsup/types';
|
|
5
5
|
import '@storm-software/build-tools/types';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-
|
|
1
|
+
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-C_qoO2U3.cjs';
|
|
2
2
|
import '@storm-software/tsup/types';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-
|
|
1
|
+
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-C_qoO2U3.js';
|
|
2
2
|
import '@storm-software/tsup/types';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-
|
|
1
|
+
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-C_qoO2U3.cjs';
|
|
2
2
|
import '@storm-software/tsup/types';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-
|
|
1
|
+
export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-C_qoO2U3.js';
|
|
2
2
|
import '@storm-software/tsup/types';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-tsup",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -132,13 +132,13 @@
|
|
|
132
132
|
"@stryke/type-checks": "^0.3.11",
|
|
133
133
|
"@stryke/types": "^0.10.1",
|
|
134
134
|
"defu": "^6.1.4",
|
|
135
|
-
"powerlines": "^0.19.
|
|
135
|
+
"powerlines": "^0.19.2"
|
|
136
136
|
},
|
|
137
137
|
"devDependencies": {
|
|
138
|
-
"@powerlines/nx": "^0.10.
|
|
139
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
138
|
+
"@powerlines/nx": "^0.10.6",
|
|
139
|
+
"@powerlines/plugin-plugin": "^0.11.14",
|
|
140
140
|
"@types/node": "^22.19.0"
|
|
141
141
|
},
|
|
142
142
|
"publishConfig": { "access": "public" },
|
|
143
|
-
"gitHead": "
|
|
143
|
+
"gitHead": "487dbe9d301ea6c2bba10d3dec1706b64a079452"
|
|
144
144
|
}
|