@pubinfo-pr/config 0.182.1 → 0.182.3
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/index.d.ts +2 -2
- package/dist/eslint.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index2.d.ts +2 -2
- package/package.json +1 -1
- package/src/eslint/factory.ts +1 -1
- package/src/eslint/index.ts +2 -2
package/dist/eslint/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as pubinfo } from "../index2.js";
|
|
2
|
-
export { pubinfo as default };
|
|
1
|
+
import { t as pubinfo-pr } from "../index2.js";
|
|
2
|
+
export { pubinfo-pr as default };
|
package/dist/eslint.js
CHANGED
|
@@ -108,13 +108,13 @@ async function vue() {
|
|
|
108
108
|
|
|
109
109
|
//#endregion
|
|
110
110
|
//#region src/eslint/factory.ts
|
|
111
|
-
async function pubinfo(...userConfigs) {
|
|
111
|
+
async function pubinfo-pr(...userConfigs) {
|
|
112
112
|
return antfu({ unocss: false }, vue(), stylistic(), ignores(), ...userConfigs);
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
//#endregion
|
|
116
116
|
//#region src/eslint/index.ts
|
|
117
|
-
var eslint_default = pubinfo;
|
|
117
|
+
var eslint_default = pubinfo-pr;
|
|
118
118
|
|
|
119
119
|
//#endregion
|
|
120
120
|
export { eslint_default as t };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { t as pubinfo } from "./index2.js";
|
|
1
|
+
import { t as pubinfo-pr } from "./index2.js";
|
|
2
2
|
import { t as _default$1 } from "./stylelint2.js";
|
|
3
3
|
import { a as getThemes, i as defineTheme, n as cssVarKey, o as globalTheme, r as customColorKey, s as themeOptions, t as colorScheme } from "./index3.js";
|
|
4
4
|
import { t as _default } from "./index4.js";
|
|
5
|
-
export { colorScheme, cssVarKey, customColorKey, defineTheme, pubinfo as eslint, getThemes, globalTheme, _default as presetPubinfo, _default$1 as stylelint, themeOptions };
|
|
5
|
+
export { colorScheme, cssVarKey, customColorKey, defineTheme, pubinfo-pr as eslint, getThemes, globalTheme, _default as presetPubinfo, _default$1 as stylelint, themeOptions };
|
package/dist/index2.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import antfu, { TypedFlatConfigItem } from "@antfu/eslint-config";
|
|
2
2
|
|
|
3
3
|
//#region src/eslint/factory.d.ts
|
|
4
|
-
declare function pubinfo(...userConfigs: Parameters<typeof antfu>[1][]): Promise<TypedFlatConfigItem[]>;
|
|
4
|
+
declare function pubinfo-pr(...userConfigs: Parameters<typeof antfu>[1][]): Promise<TypedFlatConfigItem[]>;
|
|
5
5
|
//#endregion
|
|
6
|
-
export { pubinfo as t };
|
|
6
|
+
export { pubinfo-pr as t };
|
package/package.json
CHANGED
package/src/eslint/factory.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { ignores } from './config/ignores';
|
|
|
5
5
|
import { stylistic } from './config/stylistic';
|
|
6
6
|
import { vue } from './config/vue';
|
|
7
7
|
|
|
8
|
-
export async function pubinfo(
|
|
8
|
+
export async function pubinfo-pr(
|
|
9
9
|
...userConfigs: Parameters<typeof antfu>[1][]
|
|
10
10
|
): Promise<TypedFlatConfigItem[]> {
|
|
11
11
|
return antfu(
|
package/src/eslint/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { pubinfo } from './factory';
|
|
1
|
+
import { pubinfo-pr } from './factory';
|
|
2
2
|
|
|
3
|
-
export default pubinfo;
|
|
3
|
+
export default pubinfo-pr;
|