Skip to content

Commit 7aa4f07

Browse files
benmccannmanuel3108deathman92AdrianGonz97
authored
feat: short description for each add-on (#299)
* feat: short description for each add-on * add addon template * make description optional * Update packages/addons/lucia/index.ts Co-authored-by: Victor Zhivotikov <[email protected]> * tweak separator * tweak separator * changeset --------- Co-authored-by: Manuel Serret <[email protected]> Co-authored-by: Victor Zhivotikov <[email protected]> Co-authored-by: AdrianGonz97 <[email protected]>
1 parent 0bc0a7c commit 7aa4f07

File tree

13 files changed

+21
-1
lines changed

13 files changed

+21
-1
lines changed

.changeset/silver-pianos-nail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'sv': patch
3+
---
4+
5+
feat: add short descriptions for each add-on

packages/addons/drizzle/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const options = defineAddonOptions({
6565

6666
export default defineAddon({
6767
id: 'drizzle',
68+
shortDescription: 'database orm',
6869
homepage: 'https://orm.drizzle.team',
6970
options,
7071
setup: ({ kit, unsupported }) => {

packages/addons/eslint/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { parseJson, parseScript } from '@sveltejs/cli-core/parsers';
1414

1515
export default defineAddon({
1616
id: 'eslint',
17+
shortDescription: 'linter',
1718
homepage: 'https://eslint.org',
1819
options: {},
1920
run: ({ sv, typescript, dependencyVersion }) => {

packages/addons/lucia/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const options = defineAddonOptions({
3434

3535
export default defineAddon({
3636
id: 'lucia',
37+
shortDescription: 'auth guide',
3738
homepage: 'https://lucia-auth.com',
3839
options,
3940
setup: ({ kit, dependencyVersion, unsupported, dependsOn }) => {

packages/addons/mdsvex/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { parseScript } from '@sveltejs/cli-core/parsers';
44

55
export default defineAddon({
66
id: 'mdsvex',
7+
shortDescription: 'svelte + markdown',
78
homepage: 'https://mdsvex.pngwn.io',
89
options: {},
910
run: ({ sv }) => {

packages/addons/paraglide/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ const options = defineAddonOptions({
6161

6262
export default defineAddon({
6363
id: 'paraglide',
64+
shortDescription: 'i18n',
6465
homepage: 'https://inlang.com',
6566
options,
6667
setup: ({ kit, unsupported }) => {

packages/addons/playwright/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { parseJson, parseScript } from '@sveltejs/cli-core/parsers';
44

55
export default defineAddon({
66
id: 'playwright',
7+
shortDescription: 'browser testing',
78
homepage: 'https://playwright.dev',
89
options: {},
910
run: ({ sv, typescript }) => {

packages/addons/prettier/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { parseJson } from '@sveltejs/cli-core/parsers';
44

55
export default defineAddon({
66
id: 'prettier',
7+
shortDescription: 'formatter',
78
homepage: 'https://prettier.io',
89
options: {},
910
run: ({ sv, dependencyVersion }) => {

packages/addons/storybook/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { defineAddon } from '@sveltejs/cli-core';
22

33
export default defineAddon({
44
id: 'storybook',
5+
shortDescription: 'frontend workshop',
56
homepage: 'https://storybook.js.org',
67
options: {},
78
run: async ({ sv }) => {

packages/addons/tailwindcss/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const options = defineAddonOptions({
5050
export default defineAddon({
5151
id: 'tailwindcss',
5252
alias: 'tailwind',
53+
shortDescription: 'css framework',
5354
homepage: 'https://tailwindcss.com',
5455
options,
5556
run: ({ sv, options, typescript, kit, dependencyVersion }) => {

0 commit comments

Comments
 (0)