@powerlines/deepkit 0.6.156 → 0.6.157
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnLoadOptions, Plugin } from 'esbuild';
|
|
2
|
-
import {
|
|
2
|
+
import { PluginContext } from 'powerlines';
|
|
3
3
|
import { Mode, Level } from '@deepkit/type-compiler/config';
|
|
4
4
|
|
|
5
5
|
interface ReflectionConfig {
|
|
@@ -26,7 +26,7 @@ interface ESBuildPluginOptions extends Partial<ReflectionConfig> {
|
|
|
26
26
|
* @param options - Optional esbuild onLoad options and reflection configuration.
|
|
27
27
|
* @returns An esbuild plugin instance.
|
|
28
28
|
*/
|
|
29
|
-
declare const esbuildPlugin: (context:
|
|
29
|
+
declare const esbuildPlugin: <TContext extends PluginContext>(context: TContext, options?: ESBuildPluginOptions) => Plugin;
|
|
30
30
|
declare type __ΩReflectionConfig = any[];
|
|
31
31
|
declare type __ΩESBuildPluginOptions = any[];
|
|
32
32
|
|
package/dist/esbuild-plugin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnLoadOptions, Plugin } from 'esbuild';
|
|
2
|
-
import {
|
|
2
|
+
import { PluginContext } from 'powerlines';
|
|
3
3
|
import { Mode, Level } from '@deepkit/type-compiler/config';
|
|
4
4
|
|
|
5
5
|
interface ReflectionConfig {
|
|
@@ -26,7 +26,7 @@ interface ESBuildPluginOptions extends Partial<ReflectionConfig> {
|
|
|
26
26
|
* @param options - Optional esbuild onLoad options and reflection configuration.
|
|
27
27
|
* @returns An esbuild plugin instance.
|
|
28
28
|
*/
|
|
29
|
-
declare const esbuildPlugin: (context:
|
|
29
|
+
declare const esbuildPlugin: <TContext extends PluginContext>(context: TContext, options?: ESBuildPluginOptions) => Plugin;
|
|
30
30
|
declare type __ΩReflectionConfig = any[];
|
|
31
31
|
declare type __ΩESBuildPluginOptions = any[];
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/deepkit",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.157",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"keywords": ["deepkit", "powerlines", "storm-software"],
|
|
@@ -125,8 +125,8 @@
|
|
|
125
125
|
"defu": "^6.1.4",
|
|
126
126
|
"jiti": "^2.6.1",
|
|
127
127
|
"esbuild": "^0.27.4",
|
|
128
|
-
"powerlines": "^0.42.
|
|
129
|
-
"@powerlines/plugin-esbuild": "^0.13.
|
|
128
|
+
"powerlines": "^0.42.19",
|
|
129
|
+
"@powerlines/plugin-esbuild": "^0.13.379",
|
|
130
130
|
"typescript": "^5.9.3"
|
|
131
131
|
},
|
|
132
132
|
"devDependencies": {
|
|
@@ -146,5 +146,5 @@
|
|
|
146
146
|
"rolldown": { "optional": true }
|
|
147
147
|
},
|
|
148
148
|
"publishConfig": { "access": "public" },
|
|
149
|
-
"gitHead": "
|
|
149
|
+
"gitHead": "d500b0c65a5440cf3a483c6e1b329640dba89568"
|
|
150
150
|
}
|