@vp-tw/eslint-config 0.0.9 → 0.0.10
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/eslint-typegen.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Placeholder for `eslint-typegen.d.ts`.
|
|
2
2
|
"use strict";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Placeholder for `eslint-typegen.d.ts`.
|
package/dist/esm/vdustr.mjs
CHANGED
|
@@ -11,7 +11,7 @@ import { mdx } from "./configs/mdx.mjs";
|
|
|
11
11
|
import { prettier } from "./configs/prettier.mjs";
|
|
12
12
|
import { storybook } from "./configs/storybook.mjs";
|
|
13
13
|
import { reactCompiler } from "./lib/eslint-plugin-react-compiler.mjs";
|
|
14
|
-
import "./eslint-typegen";
|
|
14
|
+
import "./eslint-typegen.mjs";
|
|
15
15
|
const vdustr = (options, ...userConfigs) => {
|
|
16
16
|
const typescriptEnabled = isPackageExists("typescript");
|
|
17
17
|
const jsoncEnabled = Boolean(options?.jsonc ?? true);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vp-tw/eslint-config",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "ViPro's ESLint configuration",
|
|
5
5
|
"homepage": "https://github.com/vdustr/eslint-config",
|
|
6
6
|
"author": {
|
|
@@ -58,8 +58,10 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
|
-
"build": "unbuild",
|
|
61
|
+
"build": "run-s build:unbuild fixEslintTypegenDts",
|
|
62
|
+
"build:unbuild": "unbuild",
|
|
62
63
|
"copy": "tsx scripts/copy",
|
|
63
|
-
"
|
|
64
|
+
"fixEslintTypegenDts": "tsx scripts/fixEslintTypegenDts",
|
|
65
|
+
"typegen": "tsx scripts/typegen"
|
|
64
66
|
}
|
|
65
67
|
}
|