@batijs/features 0.0.288 → 0.0.289
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.
|
@@ -58,6 +58,7 @@ declare const categories: readonly [{
|
|
|
58
58
|
readonly description: "Coming soon: Error Tracking solution for frontend and backend";
|
|
59
59
|
}];
|
|
60
60
|
type CategoryLabels = (typeof categories)[number]["label"];
|
|
61
|
+
declare const categoryLabelOrder: CategoryLabels[];
|
|
61
62
|
|
|
62
63
|
declare const features: readonly [{
|
|
63
64
|
readonly category: "Frontend Framework";
|
|
@@ -536,4 +537,4 @@ declare const flags: ("vike" | "react" | "vue" | "solid" | "tailwindcss" | "comp
|
|
|
536
537
|
declare const cliFlags: ("vike" | "react" | "vue" | "solid" | "tailwindcss" | "compiled-css" | "daisyui" | "shadcn-ui" | "mantine" | "authjs" | "auth0" | "firebase-auth" | "lucia-auth" | "telefunc" | "trpc" | "ts-rest" | "hono" | "h3" | "express" | "fastify" | "hattip" | "drizzle" | "sqlite" | "prisma" | "edgedb" | "plausible.io" | "google-analytics" | "segment" | "cloudflare" | "vercel" | "netlify" | "aws" | "eslint" | "prettier" | "biome" | "sentry" | "logrocket")[];
|
|
537
538
|
type Flags = (typeof flags)[number];
|
|
538
539
|
|
|
539
|
-
export { type CategoryLabels as C, type Flags as F, categories as a,
|
|
540
|
+
export { type CategoryLabels as C, type Flags as F, categories as a, categoryLabelOrder as b, categoriesGroups as c, flags as d, cliFlags as e, features as f };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as categoriesGroups, F as Flags } from './features-
|
|
2
|
-
export { C as CategoryLabels, a as categories,
|
|
1
|
+
import { c as categoriesGroups, F as Flags } from './features-DrmH4_Oh.js';
|
|
2
|
+
export { C as CategoryLabels, a as categories, b as categoryLabelOrder, e as cliFlags, f as features, d as flags } from './features-DrmH4_Oh.js';
|
|
3
3
|
|
|
4
4
|
interface Feature<C = string> {
|
|
5
5
|
label: string;
|
package/dist/index.js
CHANGED
|
@@ -87,6 +87,7 @@ tailored for Vike.`
|
|
|
87
87
|
description: `Coming soon: Error Tracking solution for frontend and backend`
|
|
88
88
|
}
|
|
89
89
|
];
|
|
90
|
+
var categoryLabelOrder = categories.map((category) => category.label);
|
|
90
91
|
|
|
91
92
|
// src/helpers.ts
|
|
92
93
|
var BatiSet = class extends Set {
|
|
@@ -116,6 +117,7 @@ export {
|
|
|
116
117
|
BatiSet,
|
|
117
118
|
categories,
|
|
118
119
|
categoriesGroups,
|
|
120
|
+
categoryLabelOrder,
|
|
119
121
|
cliFlags,
|
|
120
122
|
features,
|
|
121
123
|
flags
|
package/dist/rules.d.ts
CHANGED