my-cool-addon 0.0.5 → 0.0.8
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/README.md +4 -4
- package/package.json +2 -2
- package/src/sv/index.js +0 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# [sv](https://svelte.dev/docs/cli/overview) community add-on:
|
|
1
|
+
# [sv](https://svelte.dev/docs/cli/overview) community add-on: `my-cool-addon`
|
|
2
2
|
|
|
3
3
|
> [!IMPORTANT]
|
|
4
4
|
> Svelte maintainers have not reviewed community add-ons for malicious code. Use at your discretion
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
To install the add-on, run:
|
|
9
9
|
|
|
10
10
|
```shell
|
|
11
|
-
npx sv add
|
|
11
|
+
npx sv add my-cool-addon
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
## What you get
|
|
14
|
+
## What you get
|
|
15
15
|
|
|
16
|
-
- A
|
|
16
|
+
- A nice message, check it out!
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "my-cool-addon",
|
|
3
3
|
"description": "sv add-on for my-cool-addon",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.8",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"sv": "
|
|
23
|
+
"sv": "0.11.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@playwright/test": "^1.56.1",
|
package/src/sv/index.js
CHANGED