Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(vscode): add metadata keys to package.json #670

Merged
merged 1 commit into from
Feb 5, 2025
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
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.

Loading