|
|
@ -24,7 +24,7 @@ var ProjectTypes = []*Project{
|
|
24
|
24
|
&Project{"docker/fig", Commands{"run": "fig up"}, dockerFig},
|
|
25
|
25
|
&Project{"docker/default", Commands{}, dockerDefault},
|
|
26
|
26
|
&Project{"executable", Commands{"run": "{file}"}, executableDefault},
|
|
27
|
|
&Project{"go/default", Commands{"build": "go build {file}", "run": "go build {file} && $(basename {file} .go)"},
|
|
|
27
|
&Project{"go/default", Commands{"build": "go build {file}", "run": "go build $(basename {file}) && ./$(basename {file} .go)"},
|
|
28
|
28
|
goDefault},
|
|
29
|
29
|
&Project{"java/maven", Commands{"build": "mvn compile", "test": "mvn compile test"}, javaMaven},
|
|
30
|
30
|
&Project{"javascript/npm", Commands{}, javascriptNpm},
|