@powerlines/plugin-biome 0.2.21 → 0.2.25
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/{index-C6ogbqgm.d.cts → index-DDmb9jEs.d.cts} +16 -3
- package/dist/{index-C6ogbqgm.d.ts → index-DDmb9jEs.d.ts} +16 -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 +7 -7
|
@@ -217,8 +217,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
217
217
|
tsconfigFilePath: string;
|
|
218
218
|
};
|
|
219
219
|
|
|
220
|
-
declare const __VFS_PATCH__
|
|
221
|
-
declare const __VFS_REVERT__
|
|
220
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
221
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
222
222
|
type OutputModeType = "fs" | "virtual";
|
|
223
223
|
interface VirtualFile {
|
|
224
224
|
/**
|
|
@@ -627,6 +627,15 @@ interface OutputConfig {
|
|
|
627
627
|
* @defaultValue "dist/\{projectRoot\}"
|
|
628
628
|
*/
|
|
629
629
|
outputPath?: string;
|
|
630
|
+
/**
|
|
631
|
+
* The output directory path for the project build.
|
|
632
|
+
*
|
|
633
|
+
* @remarks
|
|
634
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
635
|
+
*
|
|
636
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
637
|
+
*/
|
|
638
|
+
distPath?: string;
|
|
630
639
|
/**
|
|
631
640
|
* The format of the output files
|
|
632
641
|
*
|
|
@@ -1570,5 +1579,9 @@ interface BiomePluginResolvedConfig extends ResolvedConfig {
|
|
|
1570
1579
|
};
|
|
1571
1580
|
}
|
|
1572
1581
|
type BiomePluginContext<TResolvedConfig extends BiomePluginResolvedConfig = BiomePluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1582
|
+
declare type __ΩBiomePluginOptions = any[];
|
|
1583
|
+
declare type __ΩBiomePluginUserConfig = any[];
|
|
1584
|
+
declare type __ΩBiomePluginResolvedConfig = any[];
|
|
1585
|
+
declare type __ΩBiomePluginContext = any[];
|
|
1573
1586
|
|
|
1574
|
-
export type { BiomePluginOptions as B, Plugin as P, BiomePluginContext as a, BiomePluginUserConfig as b, BiomePluginResolvedConfig as c };
|
|
1587
|
+
export type { BiomePluginOptions as B, Plugin as P, __ΩBiomePluginOptions as _, BiomePluginContext as a, BiomePluginUserConfig as b, BiomePluginResolvedConfig as c, __ΩBiomePluginUserConfig as d, __ΩBiomePluginResolvedConfig as e, __ΩBiomePluginContext as f };
|
|
@@ -217,8 +217,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
217
217
|
tsconfigFilePath: string;
|
|
218
218
|
};
|
|
219
219
|
|
|
220
|
-
declare const __VFS_PATCH__
|
|
221
|
-
declare const __VFS_REVERT__
|
|
220
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
221
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
222
222
|
type OutputModeType = "fs" | "virtual";
|
|
223
223
|
interface VirtualFile {
|
|
224
224
|
/**
|
|
@@ -627,6 +627,15 @@ interface OutputConfig {
|
|
|
627
627
|
* @defaultValue "dist/\{projectRoot\}"
|
|
628
628
|
*/
|
|
629
629
|
outputPath?: string;
|
|
630
|
+
/**
|
|
631
|
+
* The output directory path for the project build.
|
|
632
|
+
*
|
|
633
|
+
* @remarks
|
|
634
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
635
|
+
*
|
|
636
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
637
|
+
*/
|
|
638
|
+
distPath?: string;
|
|
630
639
|
/**
|
|
631
640
|
* The format of the output files
|
|
632
641
|
*
|
|
@@ -1570,5 +1579,9 @@ interface BiomePluginResolvedConfig extends ResolvedConfig {
|
|
|
1570
1579
|
};
|
|
1571
1580
|
}
|
|
1572
1581
|
type BiomePluginContext<TResolvedConfig extends BiomePluginResolvedConfig = BiomePluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1582
|
+
declare type __ΩBiomePluginOptions = any[];
|
|
1583
|
+
declare type __ΩBiomePluginUserConfig = any[];
|
|
1584
|
+
declare type __ΩBiomePluginResolvedConfig = any[];
|
|
1585
|
+
declare type __ΩBiomePluginContext = any[];
|
|
1573
1586
|
|
|
1574
|
-
export type { BiomePluginOptions as B, Plugin as P, BiomePluginContext as a, BiomePluginUserConfig as b, BiomePluginResolvedConfig as c };
|
|
1587
|
+
export type { BiomePluginOptions as B, Plugin as P, __ΩBiomePluginOptions as _, BiomePluginContext as a, BiomePluginUserConfig as b, BiomePluginResolvedConfig as c, __ΩBiomePluginUserConfig as d, __ΩBiomePluginResolvedConfig as e, __ΩBiomePluginContext as f };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BiomePluginOptions, P as Plugin, a as BiomePluginContext } from './index-
|
|
2
|
-
export { c as BiomePluginResolvedConfig, b as BiomePluginUserConfig } from './index-
|
|
1
|
+
import { B as BiomePluginOptions, P as Plugin, a as BiomePluginContext } from './index-DDmb9jEs.cjs';
|
|
2
|
+
export { c as BiomePluginResolvedConfig, b as BiomePluginUserConfig, f as __ΩBiomePluginContext, _ as __ΩBiomePluginOptions, e as __ΩBiomePluginResolvedConfig, d as __ΩBiomePluginUserConfig } from './index-DDmb9jEs.cjs';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BiomePluginOptions, P as Plugin, a as BiomePluginContext } from './index-
|
|
2
|
-
export { c as BiomePluginResolvedConfig, b as BiomePluginUserConfig } from './index-
|
|
1
|
+
import { B as BiomePluginOptions, P as Plugin, a as BiomePluginContext } from './index-DDmb9jEs.js';
|
|
2
|
+
export { c as BiomePluginResolvedConfig, b as BiomePluginUserConfig, f as __ΩBiomePluginContext, _ as __ΩBiomePluginOptions, e as __ΩBiomePluginResolvedConfig, d as __ΩBiomePluginUserConfig } from './index-DDmb9jEs.js';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig } from '../index-
|
|
1
|
+
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig, f as __ΩBiomePluginContext, _ as __ΩBiomePluginOptions, e as __ΩBiomePluginResolvedConfig, d as __ΩBiomePluginUserConfig } from '../index-DDmb9jEs.cjs';
|
|
2
2
|
import '@storm-software/build-tools/types';
|
|
3
3
|
import '@storm-software/config-tools/types';
|
|
4
4
|
import '@storm-software/config/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig } from '../index-
|
|
1
|
+
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig, f as __ΩBiomePluginContext, _ as __ΩBiomePluginOptions, e as __ΩBiomePluginResolvedConfig, d as __ΩBiomePluginUserConfig } from '../index-DDmb9jEs.js';
|
|
2
2
|
import '@storm-software/build-tools/types';
|
|
3
3
|
import '@storm-software/config-tools/types';
|
|
4
4
|
import '@storm-software/config/types';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig } from '../index-
|
|
1
|
+
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig, f as __ΩBiomePluginContext, _ as __ΩBiomePluginOptions, e as __ΩBiomePluginResolvedConfig, d as __ΩBiomePluginUserConfig } from '../index-DDmb9jEs.cjs';
|
|
2
2
|
import '@storm-software/build-tools/types';
|
|
3
3
|
import '@storm-software/config-tools/types';
|
|
4
4
|
import '@storm-software/config/types';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig } from '../index-
|
|
1
|
+
export { a as BiomePluginContext, B as BiomePluginOptions, c as BiomePluginResolvedConfig, b as BiomePluginUserConfig, f as __ΩBiomePluginContext, _ as __ΩBiomePluginOptions, e as __ΩBiomePluginResolvedConfig, d as __ΩBiomePluginUserConfig } from '../index-DDmb9jEs.js';
|
|
2
2
|
import '@storm-software/build-tools/types';
|
|
3
3
|
import '@storm-software/config-tools/types';
|
|
4
4
|
import '@storm-software/config/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-biome",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.25",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running Biome linting on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -90,20 +90,20 @@
|
|
|
90
90
|
"peerDependencies": { "@biomejs/biome": ">=2.0.0" },
|
|
91
91
|
"peerDependenciesMeta": { "@biomejs/biome": { "optional": false } },
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@storm-software/config-tools": "^1.188.
|
|
93
|
+
"@storm-software/config-tools": "^1.188.42",
|
|
94
94
|
"@stryke/cli": "^0.12.7",
|
|
95
95
|
"@stryke/convert": "^0.6.2",
|
|
96
96
|
"@stryke/fs": "^0.32.13",
|
|
97
97
|
"@stryke/path": "^0.19.2",
|
|
98
98
|
"defu": "^6.1.4",
|
|
99
|
-
"powerlines": "^0.
|
|
99
|
+
"powerlines": "^0.23.3"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@biomejs/biome": "^2.3.6",
|
|
103
|
-
"@powerlines/nx": "^0.10.
|
|
104
|
-
"@storm-software/tsup": "^0.2.
|
|
105
|
-
"@types/node": "^
|
|
103
|
+
"@powerlines/nx": "^0.10.20",
|
|
104
|
+
"@storm-software/tsup": "^0.2.40",
|
|
105
|
+
"@types/node": "^24.10.1"
|
|
106
106
|
},
|
|
107
107
|
"publishConfig": { "access": "public" },
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
109
109
|
}
|