@powerlines/plugin-oxlint 0.7.20 → 0.7.24
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/generate-config.d.cts +1 -1
- package/dist/helpers/generate-config.d.ts +1 -1
- package/dist/helpers/index.d.cts +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/dist/{index-Di69SlIx.d.cts → index-ucBDj9HD.d.cts} +16 -3
- package/dist/{index-Di69SlIx.d.ts → index-ucBDj9HD.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
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.ts
CHANGED
|
@@ -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
|
*
|
|
@@ -1483,5 +1492,9 @@ interface OxlintPluginResolvedConfig extends ResolvedConfig {
|
|
|
1483
1492
|
};
|
|
1484
1493
|
}
|
|
1485
1494
|
type OxlintPluginContext<TResolvedConfig extends OxlintPluginResolvedConfig = OxlintPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1495
|
+
declare type __ΩOxlintPluginOptions = any[];
|
|
1496
|
+
declare type __ΩOxlintPluginUserConfig = any[];
|
|
1497
|
+
declare type __ΩOxlintPluginResolvedConfig = any[];
|
|
1498
|
+
declare type __ΩOxlintPluginContext = any[];
|
|
1486
1499
|
|
|
1487
|
-
export type { OxlintPluginOptions as O, Plugin as P, OxlintPluginContext as a, OxlintPluginUserConfig as b, OxlintPluginResolvedConfig as c };
|
|
1500
|
+
export type { OxlintPluginOptions as O, Plugin as P, __ΩOxlintPluginOptions as _, OxlintPluginContext as a, OxlintPluginUserConfig as b, OxlintPluginResolvedConfig as c, __ΩOxlintPluginUserConfig as d, __ΩOxlintPluginResolvedConfig as e, __ΩOxlintPluginContext 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
|
*
|
|
@@ -1483,5 +1492,9 @@ interface OxlintPluginResolvedConfig extends ResolvedConfig {
|
|
|
1483
1492
|
};
|
|
1484
1493
|
}
|
|
1485
1494
|
type OxlintPluginContext<TResolvedConfig extends OxlintPluginResolvedConfig = OxlintPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1495
|
+
declare type __ΩOxlintPluginOptions = any[];
|
|
1496
|
+
declare type __ΩOxlintPluginUserConfig = any[];
|
|
1497
|
+
declare type __ΩOxlintPluginResolvedConfig = any[];
|
|
1498
|
+
declare type __ΩOxlintPluginContext = any[];
|
|
1486
1499
|
|
|
1487
|
-
export type { OxlintPluginOptions as O, Plugin as P, OxlintPluginContext as a, OxlintPluginUserConfig as b, OxlintPluginResolvedConfig as c };
|
|
1500
|
+
export type { OxlintPluginOptions as O, Plugin as P, __ΩOxlintPluginOptions as _, OxlintPluginContext as a, OxlintPluginUserConfig as b, OxlintPluginResolvedConfig as c, __ΩOxlintPluginUserConfig as d, __ΩOxlintPluginResolvedConfig as e, __ΩOxlintPluginContext as f };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from './index-
|
|
2
|
-
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from './index-
|
|
1
|
+
import { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from './index-ucBDj9HD.cjs';
|
|
2
|
+
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig, f as __ΩOxlintPluginContext, _ as __ΩOxlintPluginOptions, e as __ΩOxlintPluginResolvedConfig, d as __ΩOxlintPluginUserConfig } from './index-ucBDj9HD.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 { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from './index-
|
|
2
|
-
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from './index-
|
|
1
|
+
import { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from './index-ucBDj9HD.js';
|
|
2
|
+
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig, f as __ΩOxlintPluginContext, _ as __ΩOxlintPluginOptions, e as __ΩOxlintPluginResolvedConfig, d as __ΩOxlintPluginUserConfig } from './index-ucBDj9HD.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 OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from '../index-
|
|
1
|
+
export { a as OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig, f as __ΩOxlintPluginContext, _ as __ΩOxlintPluginOptions, e as __ΩOxlintPluginResolvedConfig, d as __ΩOxlintPluginUserConfig } from '../index-ucBDj9HD.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 OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from '../index-
|
|
1
|
+
export { a as OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig, f as __ΩOxlintPluginContext, _ as __ΩOxlintPluginOptions, e as __ΩOxlintPluginResolvedConfig, d as __ΩOxlintPluginUserConfig } from '../index-ucBDj9HD.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 OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from '../index-
|
|
1
|
+
export { a as OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig, f as __ΩOxlintPluginContext, _ as __ΩOxlintPluginOptions, e as __ΩOxlintPluginResolvedConfig, d as __ΩOxlintPluginUserConfig } from '../index-ucBDj9HD.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 OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from '../index-
|
|
1
|
+
export { a as OxlintPluginContext, O as OxlintPluginOptions, c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig, f as __ΩOxlintPluginContext, _ as __ΩOxlintPluginOptions, e as __ΩOxlintPluginResolvedConfig, d as __ΩOxlintPluginUserConfig } from '../index-ucBDj9HD.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-oxlint",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.24",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running Oxlint on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"files": ["dist/**/*"],
|
|
89
89
|
"keywords": ["oxlint", "powerlines", "storm-software", "powerlines-plugin"],
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@storm-software/config-tools": "^1.188.
|
|
91
|
+
"@storm-software/config-tools": "^1.188.42",
|
|
92
92
|
"@stryke/cli": "^0.12.7",
|
|
93
93
|
"@stryke/convert": "^0.6.2",
|
|
94
94
|
"@stryke/fs": "^0.32.13",
|
|
@@ -96,13 +96,13 @@
|
|
|
96
96
|
"defu": "^6.1.4",
|
|
97
97
|
"oxlint": "^1.29.0",
|
|
98
98
|
"oxlint-tsgolint": "^0.2.1",
|
|
99
|
-
"powerlines": "^0.
|
|
99
|
+
"powerlines": "^0.23.3"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
|
-
"@powerlines/nx": "^0.10.
|
|
103
|
-
"@storm-software/tsup": "^0.2.
|
|
104
|
-
"@types/node": "^
|
|
102
|
+
"@powerlines/nx": "^0.10.20",
|
|
103
|
+
"@storm-software/tsup": "^0.2.40",
|
|
104
|
+
"@types/node": "^24.10.1"
|
|
105
105
|
},
|
|
106
106
|
"publishConfig": { "access": "public" },
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
108
108
|
}
|