Skip to content

Commit

Permalink
Merge pull request #1 from hylang/0.0.2
Browse files Browse the repository at this point in the history
Bump to 0.0.2
  • Loading branch information
CFiggers authored Nov 25, 2022
2 parents 53714d0 + cda5c5e commit aee3832
Show file tree
Hide file tree
Showing 6 changed files with 144 additions and 815 deletions.
29 changes: 21 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,36 @@

// A task runner that calls a custom npm script that compiles the extension.
{
"version": "0.1.0",
"version": "2.0.0",

// we want to run npm
"command": "npm",

// the command is a shell script
"isShellCommand": true,

// show the output window only if unrecognized errors occur.
"showOutput": "silent",

// we run the custom script "compile" as defined in package.json
"args": ["run", "compile", "--loglevel", "silent"],

// The tsc compiler is started in watching mode
"isBackground": true,

// use the standard tsc in watch mode problem matcher to find compile problems in the output.
"problemMatcher": "$tsc-watch"
"problemMatcher": "$tsc-watch",
"tasks": [
{
"label": "npm",
"type": "shell",
"command": "npm",
"args": [
"run",
"compile",
"--loglevel",
"silent"
],
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": {
"_id": "build",
"isDefault": false
}
}
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This extension adds [Hy language](https://www.github.com/hylang/hy) support to VS Code. Features (presently) include basic syntax highlighting and the ability to evaluate expressions by sending them to a Hy REPL.

![](https://raw.githubusercontent.com/xuqinghan/vscode-hy/master/images/syntax_hy.PNG)
![](https://raw.githubusercontent.com/hylang/vscode-hy/master/images/syntax_hy.PNG)

Features:
- [x] Basic syntax highlighting
Expand Down
35 changes: 15 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "vscode-hy",
"displayName": "vscode-hy",
"name": "vscode-hy-official",
"displayName": "vscode-hy (hylang official)",
"description": "Hy language support for VSCode",
"keywords": [
"hy",
"syntax"
],
"version": "0.0.4",
"publisher": "xuqinghan",
"version": "0.0.2",
"publisher": "hylang",
"icon": "images/hy-logo-small.png",
"main": "./out/src/hyMain",
"license": "MIT",
"author": {
"name": "Qinghan Xu"
"name": "Caleb Figgers"
},
"engines": {
"vscode": "^1.11.0"
"vscode": "^1.34.0"
},
"categories": [
"Programming Languages",
Expand All @@ -30,12 +30,12 @@
],
"repository": {
"type": "git",
"url": "https://github.com/xuqinghan/vscode-hy.git"
"url": "https://github.com/hylang/vscode-hy.git"
},
"bugs": {
"url": "https://github.com/xuqinghan/vscode-hy/issues"
"url": "https://github.com/hylang/vscode-hy/issues"
},
"homepage": "https://github.com/xuqinghan/vscode-hy",
"homepage": "https://github.com/hylang/vscode-hy",
"contributes": {
"languages": [
{
Expand All @@ -54,7 +54,7 @@
{
"language": "hy",
"scopeName": "source.hy",
"path": "./syntaxes/hy.tmLanguage"
"path": "./syntaxes/hy.tmLanguage.json"
}
],
"commands": [
Expand Down Expand Up @@ -95,16 +95,11 @@
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^4.0.0",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/mocha": "^2.2.32",
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@types/mocha": "^2.2.32"
},
"__metadata": {
"id": "ed3bed5c-7cc7-40fd-9452-e53599e890a3",
"publisherDisplayName": "xuqinghan",
"publisherId": "b8f9b3d2-b308-4194-a789-ed1843c40998"
"mocha": "^10.1.0",
"typescript": "^4.0.0",
"vscode": "^1.0.0"
}
}
}
Loading

0 comments on commit aee3832

Please sign in to comment.