@powerlines/plugin-biome 0.2.128 → 0.2.129
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.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/{plugin-CnfgQ02k.d.mts → plugin-Ba21cfG1.d.mts} +8 -1
- package/dist/{plugin-DPLa1Ipz.d.cts → plugin-p5anDaD5.d.cts} +8 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.mts +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, l as Plugin, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "./plugin-
|
|
1
|
+
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, l as Plugin, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "./plugin-p5anDaD5.cjs";
|
|
2
2
|
import "./index-CEgs-Dz2.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, l as Plugin, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "./plugin-
|
|
1
|
+
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, l as Plugin, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "./plugin-Ba21cfG1.mjs";
|
|
2
2
|
import "./index-BgAdqTbb.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
|
@@ -935,6 +935,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
935
935
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
936
936
|
*/
|
|
937
937
|
description?: string;
|
|
938
|
+
/**
|
|
939
|
+
* The organization or author of the project
|
|
940
|
+
*
|
|
941
|
+
* @remarks
|
|
942
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
943
|
+
*/
|
|
944
|
+
organization?: string;
|
|
938
945
|
/**
|
|
939
946
|
* The date to use for compatibility checks
|
|
940
947
|
*
|
|
@@ -1090,7 +1097,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
1090
1097
|
/**
|
|
1091
1098
|
* The resolved options for the Powerlines project configuration.
|
|
1092
1099
|
*/
|
|
1093
|
-
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1100
|
+
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1094
1101
|
/**
|
|
1095
1102
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
1096
1103
|
*/
|
|
@@ -935,6 +935,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
935
935
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
936
936
|
*/
|
|
937
937
|
description?: string;
|
|
938
|
+
/**
|
|
939
|
+
* The organization or author of the project
|
|
940
|
+
*
|
|
941
|
+
* @remarks
|
|
942
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
943
|
+
*/
|
|
944
|
+
organization?: string;
|
|
938
945
|
/**
|
|
939
946
|
* The date to use for compatibility checks
|
|
940
947
|
*
|
|
@@ -1090,7 +1097,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
1090
1097
|
/**
|
|
1091
1098
|
* The resolved options for the Powerlines project configuration.
|
|
1092
1099
|
*/
|
|
1093
|
-
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1100
|
+
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1094
1101
|
/**
|
|
1095
1102
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
1096
1103
|
*/
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-p5anDaD5.cjs";
|
|
2
2
|
import "../index-CEgs-Dz2.cjs";
|
|
3
3
|
export { BiomePluginContext, BiomePluginOptions, BiomePluginResolvedConfig, BiomePluginUserConfig, __ΩBiomePluginContext, __ΩBiomePluginOptions, __ΩBiomePluginResolvedConfig, __ΩBiomePluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-Ba21cfG1.mjs";
|
|
2
2
|
import "../index-BgAdqTbb.mjs";
|
|
3
3
|
export { BiomePluginContext, BiomePluginOptions, BiomePluginResolvedConfig, BiomePluginUserConfig, __ΩBiomePluginContext, __ΩBiomePluginOptions, __ΩBiomePluginResolvedConfig, __ΩBiomePluginUserConfig };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-p5anDaD5.cjs";
|
|
2
2
|
export { BiomePluginContext, BiomePluginOptions, BiomePluginResolvedConfig, BiomePluginUserConfig, __ΩBiomePluginContext, __ΩBiomePluginOptions, __ΩBiomePluginResolvedConfig, __ΩBiomePluginUserConfig };
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩBiomePluginContext, c as __ΩBiomePluginUserConfig, i as BiomePluginUserConfig, n as BiomePluginOptions, o as __ΩBiomePluginOptions, r as BiomePluginResolvedConfig, s as __ΩBiomePluginResolvedConfig, t as BiomePluginContext } from "../plugin-Ba21cfG1.mjs";
|
|
2
2
|
export { BiomePluginContext, BiomePluginOptions, BiomePluginResolvedConfig, BiomePluginUserConfig, __ΩBiomePluginContext, __ΩBiomePluginOptions, __ΩBiomePluginResolvedConfig, __ΩBiomePluginUserConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-biome",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.129",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running Biome linting on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -108,14 +108,14 @@
|
|
|
108
108
|
"@stryke/fs": "^0.33.27",
|
|
109
109
|
"@stryke/path": "^0.24.1",
|
|
110
110
|
"defu": "^6.1.4",
|
|
111
|
-
"powerlines": "^0.36.
|
|
111
|
+
"powerlines": "^0.36.27"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
114
|
"@biomejs/biome": "^2.3.10",
|
|
115
|
-
"@powerlines/nx": "^0.11.
|
|
115
|
+
"@powerlines/nx": "^0.11.53",
|
|
116
116
|
"@storm-software/tsup": "^0.2.73",
|
|
117
117
|
"@types/node": "^24.10.4"
|
|
118
118
|
},
|
|
119
119
|
"publishConfig": { "access": "public" },
|
|
120
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "fbc59ce584fd0f78d90d2dbaa18f9c9267bd3b61"
|
|
121
121
|
}
|