Skip to content

Commit

Permalink
docs: update README.md and plugin.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
bluelovers committed Aug 23, 2020
1 parent ab2f7d4 commit 62ae623
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,18 @@
# install

1. via jetbrains [https://plugins.jetbrains.com/plugin/10841-run-configuration-for-typescript](https://plugins.jetbrains.com/plugin/10841-run-configuration-for-typescript)
2. github [idea-run-typescript.jar](releases/idea-run-typescript.jar) / [idea-run-typescript.jar](releases/idea-run-typescript.zip)
2. github [idea-run-typescript.jar](releases/idea-run-typescript.jar) / [idea-run-typescript.zip](releases/idea-run-typescript.zip)

# feature

- run .tsx? by ts-node like bin tool (e.g. ts-node , [esm-ts-node](https://www.npmjs.com/package/esm-ts-node))
- allow use env var `NODEJS_CONSOLE_USE_TERMINAL` for control Registry `nodejs.console.use.terminal` in Run Configuration bu this plugin
- support debug mode
- support set tsconfig
- support set argv for node, ts-node, current file
- support scratch file

[CHANGELOG.md](./CHANGELOG.md)

# screenshot

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"author": "bluelovers",
"main": "index.js",
"scripts": {
"pretest": "echo pretest",
"test": "echo test",
"posttest": "echo posttest",
"prebuild": "yarn run plugin:sync:config",
"build": "gradlew buildPlugin --warning-mode all",
"postbuild": "ts-node ./scripts/copy-build-plugin.ts",
Expand Down Expand Up @@ -50,4 +53,4 @@
"idea-version": "193.4932.9",
"kotlin": "1.4.0"
}
}
}
9 changes: 5 additions & 4 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<h1><a id="install">install</a></h1>
<ol>
<li>via jetbrains <a href="https://plugins.jetbrains.com/plugin/10841-run-configuration-for-typescript">https://plugins.jetbrains.com/plugin/10841-run-configuration-for-typescript</a></li>
<li>github <a href="https://github.com/bluelovers/idea-run-typescript/blob/master/releases/idea-run-typescript.jar">idea-run-typescript.jar</a></li>
<li>github <a href="https://github.com/bluelovers/idea-run-typescript/blob/master/releases/idea-run-typescript.jar">idea-run-typescript.jar</a> / <a href="https://github.com/bluelovers/idea-run-typescript/blob/master/releases/idea-run-typescript.zip">idea-run-typescript.zip</a></li>
</ol>
<h1><a id="screenshot">screenshot</a></h1>
<blockquote>
Expand Down Expand Up @@ -76,9 +76,10 @@ Windows 10 10.0
]]></description>
<change-notes><![CDATA[
<ul>
<li>via jetbrains <a href="https://github.com/bluelovers/idea-run-typescript/blob/master/CHANGELOG.md">CHANGELOG</a></li>
<li>Build Plugin in IntelliJ IDEA 2019.3.5#IU-193.7288.26</li>
<li>support select `esm-ts-node`, `ts-node`</li>
<li>better check ts-node</li>
<li>support debug mode</li>
<li>allow use env var `NODEJS_CONSOLE_USE_TERMINAL` for control Registry `nodejs.console.use.terminal` in Run Configuration bu this plugin</li>
</ul>
]]></change-notes>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
Expand Down Expand Up @@ -122,4 +123,4 @@ Windows 10 10.0
<action id="io.plugin.tsnode.action.HelloAction" class="io.plugin.tsnode.action.HelloAction" text="Hello" description="Says hello"/>
</group-->
</actions>
</idea-plugin>
</idea-plugin>

0 comments on commit 62ae623

Please sign in to comment.