This release adds many crucial features to improve development worksflows. It adds shutdown_signal, an improved script running pipeline and correct error propogation.
23 lines
714 B
JSON
23 lines
714 B
JSON
{
|
|
"name": "zqdgr",
|
|
"version": "0.0.3",
|
|
"description": "zqdgr is a quick and dirty Golang runner",
|
|
"author": "juls0730",
|
|
"license": "BSL-1.0",
|
|
"homepage": "https://github.com/juls0730/zqdgr",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/juls0730/zqdgr.git"
|
|
},
|
|
"scripts": {
|
|
"build": "go build -o zqdgr",
|
|
"dev": "sleep 5; echo 'test' && sleep 2 && echo 'test2'",
|
|
"test": "zqdgr test:1 && zqdgr test:2 && zqdgr test:3 && zqdgr test:4",
|
|
"test:1": "echo 'a'",
|
|
"test:2": "false",
|
|
"test:3": "echo 'b'",
|
|
"test:4": "zqdgr test:3",
|
|
"recursive": "zqdgr recursive"
|
|
},
|
|
"pattern": "**/*.go"
|
|
} |