@powerlines/plugin-oxlint 0.7.7 → 0.7.9
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-Dc_OruZK.d.cts → index-C5NOLAZb.d.cts} +25 -1
- package/dist/{index-Dc_OruZK.d.ts → index-C5NOLAZb.d.ts} +25 -1
- package/dist/{src/index.cjs → index.cjs} +1 -1
- package/dist/{src/index.d.cts → index.d.cts} +2 -2
- package/dist/{src/index.d.ts → index.d.ts} +2 -2
- package/dist/{src/index.js → index.js} +1 -1
- 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 +8 -8
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
10
10
|
import { Jiti } from 'jiti';
|
|
11
11
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
12
12
|
import { Range } from 'semver';
|
|
13
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
13
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
14
14
|
import { TsConfigJson, CompilerOptions } from '@stryke/types/tsconfig';
|
|
15
15
|
import ts from 'typescript';
|
|
16
16
|
import { PrimitiveJsonValue } from '@stryke/json/types';
|
|
@@ -936,6 +936,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
936
936
|
* A logging function for the Powerlines engine
|
|
937
937
|
*/
|
|
938
938
|
log: LogFn;
|
|
939
|
+
/**
|
|
940
|
+
* A logging function for fatal messages
|
|
941
|
+
*/
|
|
942
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
943
|
+
/**
|
|
944
|
+
* A logging function for error messages
|
|
945
|
+
*/
|
|
946
|
+
error: (message: string | UnpluginMessage) => void;
|
|
947
|
+
/**
|
|
948
|
+
* A logging function for warning messages
|
|
949
|
+
*/
|
|
950
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
951
|
+
/**
|
|
952
|
+
* A logging function for informational messages
|
|
953
|
+
*/
|
|
954
|
+
info: (message: string | UnpluginMessage) => void;
|
|
955
|
+
/**
|
|
956
|
+
* A logging function for debug messages
|
|
957
|
+
*/
|
|
958
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
959
|
+
/**
|
|
960
|
+
* A logging function for trace messages
|
|
961
|
+
*/
|
|
962
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
939
963
|
/**
|
|
940
964
|
* The metadata information
|
|
941
965
|
*/
|
|
@@ -10,7 +10,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
10
10
|
import { Jiti } from 'jiti';
|
|
11
11
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
12
12
|
import { Range } from 'semver';
|
|
13
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
13
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
14
14
|
import { TsConfigJson, CompilerOptions } from '@stryke/types/tsconfig';
|
|
15
15
|
import ts from 'typescript';
|
|
16
16
|
import { PrimitiveJsonValue } from '@stryke/json/types';
|
|
@@ -936,6 +936,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
936
936
|
* A logging function for the Powerlines engine
|
|
937
937
|
*/
|
|
938
938
|
log: LogFn;
|
|
939
|
+
/**
|
|
940
|
+
* A logging function for fatal messages
|
|
941
|
+
*/
|
|
942
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
943
|
+
/**
|
|
944
|
+
* A logging function for error messages
|
|
945
|
+
*/
|
|
946
|
+
error: (message: string | UnpluginMessage) => void;
|
|
947
|
+
/**
|
|
948
|
+
* A logging function for warning messages
|
|
949
|
+
*/
|
|
950
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
951
|
+
/**
|
|
952
|
+
* A logging function for informational messages
|
|
953
|
+
*/
|
|
954
|
+
info: (message: string | UnpluginMessage) => void;
|
|
955
|
+
/**
|
|
956
|
+
* A logging function for debug messages
|
|
957
|
+
*/
|
|
958
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
959
|
+
/**
|
|
960
|
+
* A logging function for trace messages
|
|
961
|
+
*/
|
|
962
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
939
963
|
/**
|
|
940
964
|
* The metadata information
|
|
941
965
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var chunkFBBMZ4NC_cjs=require('
|
|
1
|
+
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var chunkFBBMZ4NC_cjs=require('./chunk-FBBMZ4NC.cjs'),types$1=require('@storm-software/config-tools/types'),execute=require('@stryke/cli/execute'),exists=require('@stryke/fs/exists'),getParentPath=require('@stryke/fs/get-parent-path'),packageFns=require('@stryke/fs/package-fns'),join=require('@stryke/path/join'),replace=require('@stryke/path/replace'),types=require('./types');/*****************************************
|
|
2
2
|
*
|
|
3
3
|
* ⚡ Built by Storm Software
|
|
4
4
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from '
|
|
2
|
-
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from '
|
|
1
|
+
import { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from './index-C5NOLAZb.cjs';
|
|
2
|
+
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from './index-C5NOLAZb.cjs';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from '
|
|
2
|
-
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from '
|
|
1
|
+
import { O as OxlintPluginOptions, P as Plugin, a as OxlintPluginContext } from './index-C5NOLAZb.js';
|
|
2
|
+
export { c as OxlintPluginResolvedConfig, b as OxlintPluginUserConfig } from './index-C5NOLAZb.js';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {a}from'
|
|
1
|
+
import {a}from'./chunk-UCUR73HG.js';import {LogLevelLabel}from'@storm-software/config-tools/types';import {execute,executePackage}from'@stryke/cli/execute';import {existsSync}from'@stryke/fs/exists';import {getParentPath}from'@stryke/fs/get-parent-path';import {isPackageListed}from'@stryke/fs/package-fns';import {joinPaths}from'@stryke/path/join';import {replacePath}from'@stryke/path/replace';export*from'./types';/*****************************************
|
|
2
2
|
*
|
|
3
3
|
* ⚡ Built by Storm Software
|
|
4
4
|
*
|
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 } from '../index-C5NOLAZb.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 } from '../index-C5NOLAZb.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 } from '../index-C5NOLAZb.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 } from '../index-C5NOLAZb.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.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running Oxlint on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -89,20 +89,20 @@
|
|
|
89
89
|
"keywords": ["oxlint", "powerlines", "storm-software", "powerlines-plugin"],
|
|
90
90
|
"dependencies": {
|
|
91
91
|
"@storm-software/config-tools": "^1.188.19",
|
|
92
|
-
"@stryke/cli": "^0.12.
|
|
93
|
-
"@stryke/convert": "^0.6.
|
|
94
|
-
"@stryke/fs": "^0.32.
|
|
95
|
-
"@stryke/path": "^0.
|
|
92
|
+
"@stryke/cli": "^0.12.5",
|
|
93
|
+
"@stryke/convert": "^0.6.1",
|
|
94
|
+
"@stryke/fs": "^0.32.11",
|
|
95
|
+
"@stryke/path": "^0.19.0",
|
|
96
96
|
"defu": "^6.1.4",
|
|
97
97
|
"oxlint": "^1.26.0",
|
|
98
98
|
"oxlint-tsgolint": "^0.2.1",
|
|
99
|
-
"powerlines": "^0.
|
|
99
|
+
"powerlines": "^0.19.1"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
|
-
"@powerlines/nx": "^0.10.
|
|
102
|
+
"@powerlines/nx": "^0.10.5",
|
|
103
103
|
"@storm-software/tsup": "^0.2.17",
|
|
104
104
|
"@types/node": "^22.19.0"
|
|
105
105
|
},
|
|
106
106
|
"publishConfig": { "access": "public" },
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "d25499feacd0143784f3cd426488909134bffab2"
|
|
108
108
|
}
|