Skip to content

Commit

Permalink
v1.0.0 release!
Browse files Browse the repository at this point in the history
  • Loading branch information
stordahl committed Nov 25, 2021
1 parent 1547678 commit 7976db6
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,31 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## [Unreleased]

- Initial release
## [1.0.0] - 2021-11-23
### Initial Features
| Snippet | Output |
| ----------- | ---------------------------------------------------------------------- |
| kitComp | Scaffolds a Svelte component |
| ktiCompTs | Scaffolds a TypeScript Svelte component |
| kitModule | Scaffolds a SvelteKit module component for a page or layout |
| kitModuleTs | Scaffolds a SvelteKit Typescript module component for a page or layout |
| kitLayout | Scaffolds a SvelteKit Layout component |
| kitPrefetch | Create a sveltekit:prefetch anchor tag |
| kitEach | Create a Svelte `{#each}` block |
| kitIf | Create a Svelte `{#if}` block |
| kitAwait | Create a Svelte `{#await}` block |
| kitKey | Create a Svelte `{#key}` block |
| kitTitle | Create a title element in the document head |
| kitLoad | Create a SvelteKit Load function |
| kitEndpoint | Create a SvelteKit Endpoint |

### Troubleshooting

- To enable intellisense in MD files, add the following JSON to your global settings.json
```json
"[markdown]": {
"editor.quickSuggestions": true,
"editor.wordBasedSuggestions": false
},
```

Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
"name": "sveltekit-snippets",
"displayName": "sveltekit-snippets",
"description": "Snippets for SvelteKit",
"version": "0.0.5",
"version": "1.0.0",
"icon": "images/icon.png",
"publisher": "stordahl",
"scripts": {
"build": "vsce package"
},
"repository": {
"type": "git",
"url": "https://github.com/stordahl/sveltekit-snippets.git"
Expand Down Expand Up @@ -32,7 +36,9 @@
"language": "markdown",
"path": "./snippets/snippets.code-snippets"
}

]
},
"devDependencies": {
"vsce": "^2.5.0"
}
}

0 comments on commit 7976db6

Please sign in to comment.