@batijs/features 0.0.172 → 0.0.174
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.
|
@@ -7,34 +7,44 @@ declare enum categoriesGroups {
|
|
|
7
7
|
declare const categories: readonly [{
|
|
8
8
|
readonly label: "Framework";
|
|
9
9
|
readonly group: categoriesGroups.Frontend;
|
|
10
|
+
readonly description: "It’s recommended to choose a frontend lib to kickstart a new Vike project,\nas they each come with a wide range of integrations. You can at any time eject and take control over integration code\nso that it doesn’t get in your way.";
|
|
10
11
|
}, {
|
|
11
12
|
readonly label: "CSS";
|
|
12
13
|
readonly group: categoriesGroups.Frontend;
|
|
14
|
+
readonly description: "These CSS libraries are deeply integrated with UI frameworks.\nThey showcase their respective recommended usage and how they integrate with Vite and Vike.";
|
|
13
15
|
}, {
|
|
14
16
|
readonly label: "Auth";
|
|
15
17
|
readonly group: categoriesGroups.Backend;
|
|
18
|
+
readonly description: "Ready to use self-hosted or cloud-based Auth solutions.\nRequires to also select a Server of your choosing.";
|
|
16
19
|
}, {
|
|
17
20
|
readonly label: "RPC";
|
|
18
21
|
readonly group: categoriesGroups.Backend;
|
|
22
|
+
readonly description: "Data fetching libraries to help you interact with your backend.\nSelecting one of those usually requires you to also choose a Server.";
|
|
19
23
|
}, {
|
|
20
24
|
readonly label: "Server";
|
|
21
25
|
readonly group: categoriesGroups.Backend;
|
|
26
|
+
readonly description: "Mostly required by other integrations such as Auth or RPC,\nit's recommended to only install a Server if you really need to, as Vike doesn't require one to operate.";
|
|
22
27
|
}, {
|
|
23
28
|
readonly label: "Database";
|
|
24
29
|
readonly group: categoriesGroups.Backend;
|
|
30
|
+
readonly description: "Helping you get started with a database solution.";
|
|
25
31
|
}, {
|
|
26
32
|
readonly label: "Hosting";
|
|
27
33
|
readonly group: categoriesGroups.Backend;
|
|
34
|
+
readonly description: "Quickly host your Vike project with a Serverless or VPS (coming soon) solution.";
|
|
28
35
|
}, {
|
|
29
36
|
readonly label: "Linter";
|
|
30
37
|
readonly multiple: true;
|
|
31
38
|
readonly group: categoriesGroups.Tools;
|
|
39
|
+
readonly description: "Well known linting and formatting tools, pre-configured to match their recommended usage,\ntailored for Vike.";
|
|
32
40
|
}, {
|
|
33
41
|
readonly label: "Analytics";
|
|
34
42
|
readonly group: categoriesGroups.Tools;
|
|
43
|
+
readonly description: "Keep track of your website traffic with these ready-to-get-started Analytics solutions.";
|
|
35
44
|
}, {
|
|
36
45
|
readonly label: "Error tracking";
|
|
37
46
|
readonly group: categoriesGroups.Tools;
|
|
47
|
+
readonly description: "Coming soon: Error Tracking solution for frontend and backend";
|
|
38
48
|
}];
|
|
39
49
|
type CategoryLabels = (typeof categories)[number]["label"];
|
|
40
50
|
|
|
@@ -191,7 +201,7 @@ declare const features: readonly [{
|
|
|
191
201
|
}];
|
|
192
202
|
}, {
|
|
193
203
|
readonly category: "Server";
|
|
194
|
-
readonly label: "
|
|
204
|
+
readonly label: "h3";
|
|
195
205
|
readonly flag: "h3";
|
|
196
206
|
readonly url: "https://github.com/unjs/h3";
|
|
197
207
|
readonly tagline: "Minimal H(TTP) framework built for high performance and portability";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as categoriesGroups } from './features-
|
|
2
|
-
export { C as CategoryLabels, F as Flags, a as categories, f as features, b as flags } from './features-
|
|
1
|
+
import { c as categoriesGroups } from './features-DrlHxfVg.js';
|
|
2
|
+
export { C as CategoryLabels, F as Flags, a as categories, f as features, b as flags } from './features-DrlHxfVg.js';
|
|
3
3
|
|
|
4
4
|
interface Feature<C = string> {
|
|
5
5
|
label: string;
|
|
@@ -23,6 +23,7 @@ interface Category {
|
|
|
23
23
|
label: string;
|
|
24
24
|
group: categoriesGroups;
|
|
25
25
|
multiple?: boolean;
|
|
26
|
+
description?: string;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
export { type Category, type Feature, type FeatureLink, categoriesGroups };
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
features,
|
|
3
3
|
flags
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-B74KZN65.js";
|
|
5
5
|
|
|
6
6
|
// src/groups.ts
|
|
7
7
|
var categoriesGroups = /* @__PURE__ */ ((categoriesGroups2) => {
|
|
@@ -15,44 +15,61 @@ var categoriesGroups = /* @__PURE__ */ ((categoriesGroups2) => {
|
|
|
15
15
|
var categories = [
|
|
16
16
|
{
|
|
17
17
|
label: "Framework",
|
|
18
|
-
group: "Frontend" /* Frontend
|
|
18
|
+
group: "Frontend" /* Frontend */,
|
|
19
|
+
description: `It\u2019s recommended to choose a frontend lib to kickstart a new Vike project,
|
|
20
|
+
as they each come with a wide range of integrations. You can at any time eject and take control over integration code
|
|
21
|
+
so that it doesn\u2019t get in your way.`
|
|
19
22
|
},
|
|
20
23
|
{
|
|
21
24
|
label: "CSS",
|
|
22
|
-
group: "Frontend" /* Frontend
|
|
25
|
+
group: "Frontend" /* Frontend */,
|
|
26
|
+
description: `These CSS libraries are deeply integrated with UI frameworks.
|
|
27
|
+
They showcase their respective recommended usage and how they integrate with Vite and Vike.`
|
|
23
28
|
},
|
|
24
29
|
{
|
|
25
30
|
label: "Auth",
|
|
26
|
-
group: "Backend" /* Backend
|
|
31
|
+
group: "Backend" /* Backend */,
|
|
32
|
+
description: `Ready to use self-hosted or cloud-based Auth solutions.
|
|
33
|
+
Requires to also select a Server of your choosing.`
|
|
27
34
|
},
|
|
28
35
|
{
|
|
29
36
|
label: "RPC",
|
|
30
|
-
group: "Backend" /* Backend
|
|
37
|
+
group: "Backend" /* Backend */,
|
|
38
|
+
description: `Data fetching libraries to help you interact with your backend.
|
|
39
|
+
Selecting one of those usually requires you to also choose a Server.`
|
|
31
40
|
},
|
|
32
41
|
{
|
|
33
42
|
label: "Server",
|
|
34
|
-
group: "Backend" /* Backend
|
|
43
|
+
group: "Backend" /* Backend */,
|
|
44
|
+
description: `Mostly required by other integrations such as Auth or RPC,
|
|
45
|
+
it's recommended to only install a Server if you really need to, as Vike doesn't require one to operate.`
|
|
35
46
|
},
|
|
36
47
|
{
|
|
37
48
|
label: "Database",
|
|
38
|
-
group: "Backend" /* Backend
|
|
49
|
+
group: "Backend" /* Backend */,
|
|
50
|
+
description: `Helping you get started with a database solution.`
|
|
39
51
|
},
|
|
40
52
|
{
|
|
41
53
|
label: "Hosting",
|
|
42
|
-
group: "Backend" /* Backend
|
|
54
|
+
group: "Backend" /* Backend */,
|
|
55
|
+
description: `Quickly host your Vike project with a Serverless or VPS (coming soon) solution.`
|
|
43
56
|
},
|
|
44
57
|
{
|
|
45
58
|
label: "Linter",
|
|
46
59
|
multiple: true,
|
|
47
|
-
group: "Tools" /* Tools
|
|
60
|
+
group: "Tools" /* Tools */,
|
|
61
|
+
description: `Well known linting and formatting tools, pre-configured to match their recommended usage,
|
|
62
|
+
tailored for Vike.`
|
|
48
63
|
},
|
|
49
64
|
{
|
|
50
65
|
label: "Analytics",
|
|
51
|
-
group: "Tools" /* Tools
|
|
66
|
+
group: "Tools" /* Tools */,
|
|
67
|
+
description: `Keep track of your website traffic with these ready-to-get-started Analytics solutions.`
|
|
52
68
|
},
|
|
53
69
|
{
|
|
54
70
|
label: "Error tracking",
|
|
55
|
-
group: "Tools" /* Tools
|
|
71
|
+
group: "Tools" /* Tools */,
|
|
72
|
+
description: `Coming soon: Error Tracking solution for frontend and backend`
|
|
56
73
|
}
|
|
57
74
|
];
|
|
58
75
|
export {
|
package/dist/rules.d.ts
CHANGED
package/dist/rules.js
CHANGED