Skip to content

Commit

Permalink
chore(vscode): add metadata keys to package.json (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen authored Feb 5, 2025
1 parent d435880 commit ccc283d
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 55 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.env
/codegen/target
/target
node_modules
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [Unreleased](https://github.com/hougesen/mdsf/compare/v0.4.1...HEAD)

- chore(vscode): add metadata keys to package.json [`#670`](https://github.com/hougesen/mdsf/pull/670)
- build(deps-dev): bump @typescript-eslint/parser in /mdsf-vscode [`#669`](https://github.com/hougesen/mdsf/pull/669)
- build(deps-dev): bump @typescript-eslint/eslint-plugin in /mdsf-vscode [`#668`](https://github.com/hougesen/mdsf/pull/668)
- build(deps): bump toml from 0.8.19 to 0.8.20 [`#666`](https://github.com/hougesen/mdsf/pull/666)
- build(deps): bump clap from 4.5.27 to 4.5.28 [`#665`](https://github.com/hougesen/mdsf/pull/665)
- feat: add support for coffeelint [`#664`](https://github.com/hougesen/mdsf/pull/664)
- build(deps): bump tempfile from 3.15.0 to 3.16.0 [`#659`](https://github.com/hougesen/mdsf/pull/659)
- build(deps): bump clap_complete from 4.5.43 to 4.5.44 [`#660`](https://github.com/hougesen/mdsf/pull/660)
Expand Down
9 changes: 0 additions & 9 deletions mdsf-vscode/CHANGELOG.md

This file was deleted.

30 changes: 30 additions & 0 deletions mdsf-vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "mdsf-vscode",
"displayName": "mdsf",
"publisher": "hougesen",
"description": "Format markdown code blocks using mdsf",
"version": "0.0.1",
"engines": {
Expand All @@ -23,6 +24,35 @@
}
]
},
"languages": [
{
"id": "ignore",
"extensions": [
".mdsfignore"
]
}
],
"homepage": "https://github.com/hougesen/mdsf",
"author": {
"email": "[email protected]",
"name": "Mads Hougesen",
"url": "https://mhouge.dk"
},
"license": "MIT",
"keywords": [
"formatter",
"linter",
"markdown",
"mdsf"
],
"bugs": {
"url": "https://github.com/hougesen/mdsf/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hougesen/mdsf.git",
"directory": "mdsf-vscode"
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
Expand Down
46 changes: 0 additions & 46 deletions mdsf-vscode/vsc-extension-quickstart.md

This file was deleted.

0 comments on commit ccc283d

Please sign in to comment.