@powerlines/plugin-oxlint 0.7.184 → 0.7.186

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.
Files changed (22) hide show
  1. package/dist/helpers/index.cjs +3 -0
  2. package/dist/{src/index.d.cts → index.d.cts} +2 -2
  3. package/dist/{src/index.d.mts → index.d.mts} +3 -3
  4. package/dist/{packages/plugin-oxlint/src/types → types}/plugin.d.cts +3 -3
  5. package/dist/{packages/plugin-oxlint/src/types → types}/plugin.d.mts +3 -3
  6. package/package.json +4 -4
  7. package/dist/packages/plugin-oxlint/src/helpers/index.cjs +0 -3
  8. /package/dist/{packages/plugin-oxlint/src/helpers → helpers}/generate-config.cjs +0 -0
  9. /package/dist/{packages/plugin-oxlint/src/helpers → helpers}/generate-config.d.cts +0 -0
  10. /package/dist/{packages/plugin-oxlint/src/helpers → helpers}/generate-config.d.mts +0 -0
  11. /package/dist/{packages/plugin-oxlint/src/helpers → helpers}/generate-config.mjs +0 -0
  12. /package/dist/{packages/plugin-oxlint/src/helpers → helpers}/index.d.cts +0 -0
  13. /package/dist/{packages/plugin-oxlint/src/helpers → helpers}/index.d.mts +0 -0
  14. /package/dist/{packages/plugin-oxlint/src/helpers → helpers}/index.mjs +0 -0
  15. /package/dist/{src/index.cjs → index.cjs} +0 -0
  16. /package/dist/{src/index.mjs → index.mjs} +0 -0
  17. /package/dist/{packages/plugin-oxlint/src/types → types}/index.cjs +0 -0
  18. /package/dist/{packages/plugin-oxlint/src/types → types}/index.d.cts +0 -0
  19. /package/dist/{packages/plugin-oxlint/src/types → types}/index.d.mts +0 -0
  20. /package/dist/{packages/plugin-oxlint/src/types → types}/index.mjs +0 -0
  21. /package/dist/{packages/plugin-oxlint/src/types → types}/plugin.cjs +0 -0
  22. /package/dist/{packages/plugin-oxlint/src/types → types}/plugin.mjs +0 -0
@@ -0,0 +1,3 @@
1
+ const require_helpers_generate_config = require('./generate-config.cjs');
2
+
3
+ exports.generateConfig = require_helpers_generate_config.generateConfig;
@@ -1,5 +1,5 @@
1
- import { Plugin } from "../powerlines/src/types/plugin.cjs";
2
- import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "../packages/plugin-oxlint/src/types/plugin.cjs";
1
+ import { Plugin } from "./powerlines/src/types/plugin.cjs";
2
+ import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "./types/plugin.cjs";
3
3
 
4
4
  //#region src/index.d.ts
5
5
 
@@ -1,6 +1,6 @@
1
- import { Plugin } from "../powerlines/src/types/plugin.mjs";
2
- import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "../packages/plugin-oxlint/src/types/plugin.mjs";
3
- import "../packages/plugin-oxlint/src/types/index.mjs";
1
+ import { Plugin } from "./powerlines/src/types/plugin.mjs";
2
+ import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "./types/plugin.mjs";
3
+ import "./types/index.mjs";
4
4
 
5
5
  //#region src/index.d.ts
6
6
 
@@ -1,6 +1,6 @@
1
- import { ResolvedConfig } from "../../../../powerlines/src/types/resolved.cjs";
2
- import { PluginContext } from "../../../../powerlines/src/types/context.cjs";
3
- import { UserConfig } from "../../../../powerlines/src/types/config.cjs";
1
+ import { ResolvedConfig } from "../powerlines/src/types/resolved.cjs";
2
+ import { PluginContext } from "../powerlines/src/types/context.cjs";
3
+ import { UserConfig } from "../powerlines/src/types/config.cjs";
4
4
 
5
5
  //#region src/types/plugin.d.ts
6
6
  interface OxlintPluginOptions {
@@ -1,6 +1,6 @@
1
- import { ResolvedConfig } from "../../../../powerlines/src/types/resolved.mjs";
2
- import { PluginContext } from "../../../../powerlines/src/types/context.mjs";
3
- import { UserConfig } from "../../../../powerlines/src/types/config.mjs";
1
+ import { ResolvedConfig } from "../powerlines/src/types/resolved.mjs";
2
+ import { PluginContext } from "../powerlines/src/types/context.mjs";
3
+ import { UserConfig } from "../powerlines/src/types/config.mjs";
4
4
 
5
5
  //#region src/types/plugin.d.ts
6
6
  interface OxlintPluginOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-oxlint",
3
- "version": "0.7.184",
3
+ "version": "0.7.186",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for running Oxlint on the codebase.",
6
6
  "repository": {
@@ -108,12 +108,12 @@
108
108
  "defu": "^6.1.4",
109
109
  "oxlint": "^1.41.0",
110
110
  "oxlint-tsgolint": "^0.2.1",
111
- "powerlines": "^0.37.54"
111
+ "powerlines": "^0.37.56"
112
112
  },
113
113
  "devDependencies": {
114
- "@powerlines/plugin-plugin": "^0.12.132",
114
+ "@powerlines/plugin-plugin": "^0.12.134",
115
115
  "@types/node": "^24.10.9"
116
116
  },
117
117
  "publishConfig": { "access": "public" },
118
- "gitHead": "0030560b882e0e314b3085cc9607bc387e6bcba3"
118
+ "gitHead": "7af3632002c069b20d1ce8fc08866a8c52cb7256"
119
119
  }
@@ -1,3 +0,0 @@
1
- const require_packages_plugin_oxlint_src_helpers_generate_config = require('./generate-config.cjs');
2
-
3
- exports.generateConfig = require_packages_plugin_oxlint_src_helpers_generate_config.generateConfig;
File without changes
File without changes