@saashub/qoq-eslint-v9-ts-vitest 1.1.6 → 1.1.8

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/bin/bin.cjs CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- "use strict";require("@saashub/qoq-eslint-v9-js/tools").executeInspector();
2
+ "use strict";require("@saashub/qoq-eslint-v9-js/tools").executeInspector(__dirname);
@@ -0,0 +1,5 @@
1
+ const path = require('path');
2
+
3
+ const config = require(path.resolve(__dirname, 'lib/index.cjs'));
4
+
5
+ module.exports = config.baseConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saashub/qoq-eslint-v9-ts-vitest",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "description": "Eslint flat config template for TS + Vitest",
5
5
  "keywords": [
6
6
  "eslint TypeScript + Vitest template",
@@ -42,23 +42,23 @@
42
42
  "test": "vitest run --coverage"
43
43
  },
44
44
  "dependencies": {
45
- "@saashub/qoq-eslint-v9-js-vitest": "^1.1.6",
46
- "@saashub/qoq-eslint-v9-ts": "^1.1.6",
45
+ "@saashub/qoq-eslint-v9-js-vitest": "^1.1.8",
46
+ "@saashub/qoq-eslint-v9-ts": "^1.1.8",
47
47
  "lodash": "4.17.21"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@rollup/plugin-typescript": "12.1.2",
51
- "@saashub/qoq-cli": "^1.1.6",
51
+ "@saashub/qoq-cli": "^1.1.8",
52
52
  "@types/eslint": "^9",
53
53
  "@types/lodash": "4.17.16",
54
54
  "@vitest/coverage-v8": "3.0.9",
55
55
  "rimraf": "6.0.1",
56
- "rollup": "4.36.0",
56
+ "rollup": "4.37.0",
57
57
  "typescript": "5.8.2",
58
58
  "vitest": "3.0.9"
59
59
  },
60
60
  "peerDependencies": {
61
- "eslint": "^9.19.0",
61
+ "eslint": "^9.22.0",
62
62
  "typescript": ">=4.8.4 <5.9.0"
63
63
  },
64
64
  "engines": {
@@ -67,5 +67,5 @@
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "5977b4c6f7b2e33d7b76262ae7b0bf7dcf5c1f72"
70
+ "gitHead": "3140860f6d864b7dae4c9da6658d82f92e47ea84"
71
71
  }