Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Read the [SvelteKit documentation](https://kit.svelte.dev/docs) for more details

## Community adders

Get started on [creating your own community adder](/adder-template/README.md).
Get started on [creating your own community adder](/community-adder-template/README.md).

[Additional adders](https://www.sveltesociety.dev/packages?category=svelte-add) are maintained by the community.

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# adder-template-js
# community-adder-template

> [!IMPORTANT]
> This template's dependencies may not be up-to-date; be sure to update them to the latest!
Expand All @@ -11,7 +11,7 @@ The adder template for community adders for [`sv`](https://github.com/sveltejs/c
Use [`degit`](https://github.com/Rich-Harris/degit) to clone the template:

```shell
npx degit sveltejs/cli/adder-template adder-name
npx degit sveltejs/cli/community-adder-template adder-name
```

## Using the adder
Expand Down Expand Up @@ -48,7 +48,7 @@ To execute the newly published package with `sv`, run:
npx sv add --community npm:adder-package-name
```

After that, feel free to open a pull request to [`sv`](https://github.com/sveltejs/cli) and add your adder to the [community list](/community/).
After that, feel free to open a pull request to [`sv`](https://github.com/sveltejs/cli) and add your adder to the [community list](/community-adders/).

## Things to be aware of

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "adder-template",
"name": "community-adder-template",
"version": "0.0.0",
"license": "MIT",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { imports } from '@svelte-cli/core/js';

export const adder = defineAdderConfig({
metadata: {
id: 'adder-template',
name: 'Adder Template',
id: 'community-adder-template',
name: 'Community Adder Template',
description: 'An adder template demo',
environments: { kit: true, svelte: true }
},
Expand All @@ -18,7 +18,7 @@ export const adder = defineAdderConfig({
contentType: 'text',
content: ({ content, options }) => {
if (options.demo) {
return 'This is a text file made by the Adder Template demo!';
return 'This is a text file made by the Community Adder Template demo!';
}
return content;
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packages:
- 'packages/*'
- 'adder-template'
- 'community-adder-template'
- '!.test-tmp/**'