-node => -ansii-to-html
This commit is contained in:
@ -18,6 +18,7 @@ namespace Yavsc.Helpers
|
||||
|
||||
public static Stream GetStream(StreamReader reader)
|
||||
{
|
||||
// FIXME get some more stable alternative
|
||||
var procStart = new ProcessStartInfo("node", "node_modules/ansi-to-html/bin/ansi-to-html")
|
||||
{
|
||||
UseShellExecute = false,
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"ansi-to-html": "^0.6.11"
|
||||
}
|
||||
}
|
||||
|
@ -2,13 +2,6 @@
|
||||
# yarn lockfile v1
|
||||
|
||||
|
||||
ansi-to-html@^0.6.11:
|
||||
version "0.6.11"
|
||||
resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.11.tgz#5093fc4962186c0e9343dec572a4f71abdc93439"
|
||||
integrity sha512-88XZtrcwrfkyn6fGstHnkaF1kl7hGtNCYh4vSmItgEV+6JnQHryDBf7udF4f2RhTRQmYvJvPcTtqgaqrxzc9oA==
|
||||
dependencies:
|
||||
entities "^1.1.1"
|
||||
|
||||
entities@^1.1.1:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
|
||||
|
@ -20,10 +20,10 @@ include $(MAKEFILE_DIR)/dnx.mk
|
||||
$(BINTARGET): project.lock.json ../Yavsc/bin/$(CONFIGURATION)/dnx451/Yavsc.dll ../Yavsc.Abstract/bin/$(CONFIGURATION)/dnx451/Yavsc.Abstract.dll ../Yavsc.Server/bin/$(CONFIGURATION)/dnx451/Yavsc.Server.dll
|
||||
dnu build --configuration $(CONFIGURATION)
|
||||
|
||||
non-regression: $(BINTARGET) node_modules/ansi-to-html
|
||||
non-regression: $(BINTARGET)
|
||||
ASPNET_ENV=Development dnx test -maxthreads 1 -trait regression=non
|
||||
|
||||
regression: $(BINTARGET) node_modules/ansi-to-html
|
||||
regression: $(BINTARGET)
|
||||
ASPNET_ENV=Development dnx test -maxthreads 1 -trait regression=oui
|
||||
|
||||
test: non-regression
|
||||
@ -31,9 +31,6 @@ test: non-regression
|
||||
testdev: $(BINTARGET)
|
||||
ASPNET_ENV=Development dnx test -maxthreads 1 -trait dev=wip
|
||||
|
||||
node_modules/ansi-to-html:
|
||||
npm install ansi-to-html
|
||||
|
||||
clean:
|
||||
rm -rf bin obj testingrepo
|
||||
|
||||
|
@ -13,7 +13,6 @@ namespace test
|
||||
[Trait("regression", "oui")]
|
||||
public class NodeTests
|
||||
{
|
||||
[Fact]
|
||||
void TestNodeJsForAnsitohtml ()
|
||||
{
|
||||
var procStart = new ProcessStartInfo("node", "node_modules/ansi-to-html/bin/ansi-to-html")
|
||||
@ -32,7 +31,6 @@ namespace test
|
||||
}
|
||||
}
|
||||
|
||||
[Fact]
|
||||
void AnsiToHtml()
|
||||
{
|
||||
var procStart = new ProcessStartInfo("ls", "-l --color=always")
|
||||
|
Reference in New Issue
Block a user