-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: setup @jujulego/logger * feat: always print ink on stdout * fix: logs colors when output is piped * fix: unit tests * fix: e2e tests * feat: change log format * fix: e2e tests * fix: e2e tests * fix: tests * chore: remove legacy code & deps * test: thread gateway * chore: fix engines * chore: bump version number * chore: relock * Optimize e2e tests (#809) * chore: copy e2e project folder * chore: copy e2e project folder (other tests) * chore: fix e2e plugin tests * chore: prevent toto to be logged in tests * fix: build error --------- Co-authored-by: Julien Capellari <[email protected]> * Remove global spinner (#810) * feat: remove global spinner * fix: e2e tests * chore: use custom plugin for swc * Support args in task expressions (#820) * feat(tasks): support args inside task expression * feat(tasks): inject args from tasks expression in Task commands * fix: error handling * chore: bump version number * Add fallback syntax (#839) * chore: upgrade tasks * feat: add fallback syntax * feat: add fallback e2e tests * fix: fallback e2e tests * fix: fallback e2e tests * chore: update README * Run hook scripts (#847) * feat: add hooks option in global configuration * feat: handle hook option in ScriptTask * fix: hook false ignored from options * fix: unit tests * feat: test ScriptTask with hooks * feat: add logs for hooks * feat: remove test scripts * feat: add e2e tests for hook scripts * fix: forgotten .only * docs: add a hooks section in th readme --------- Co-authored-by: Julien Capellari <[email protected]> * chore: bump version number * Sort list output (#876) * feat: sort list output * feat: remove default arrays from doc * fix: tests * fix: e2e tests * chore: refacto list command * feat: add order option * feat(list): test sort options --------- Co-authored-by: Julien Capellari <[email protected]> * chore: bump version number * Setup rollup (#881) * chore: setup rollup * fix: simplify some imports * fix: plugin import * fix: tests * fix: build * fix: e2e plugin test * chore: upgrade aegis (#882) * Change sequence operator (#889) * feat: change sequence operator * feat: update tests * feat: update readme * chore: bump version number * chore: rework rollup config * Use task expression on run command (#892) * feat: add task expression on run * feat: deprecate group * docs: update readme & command descriptions * feat: rework error handling * chore: rename task expr service * feat: add e2e tests * Use task expression on each (#893) * feat: use task expression on each * feat: add e2e test * feat: test extract script util * chore: bump version number * Scrollable task spinner (#909) * feat: feat rework task spinner * feat: fix task order * feat: fix & stabilize e2e tests * feat: make task-tree scroll * feat: add tree completed component * feat: factorize task flatener * feat: add stats at then end * fix: build error * fix: remove old tests * fix: handle no raw mode * fix: e2e tests * fix: remove cast * fix: tests * fix: lockfile * fix: task command tests * fix: sonarcloud review --------- Co-authored-by: Julien Capellari <[email protected]> --------- Co-authored-by: Julien Capellari <[email protected]> Co-authored-by: Julien Capellari <[email protected]>
- Loading branch information
1 parent
77d8345
commit 9ccb890
Showing
112 changed files
with
3,606 additions
and
4,295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"jsc": { | ||
"loose": true, | ||
"externalHelpers": true, | ||
"parser": { | ||
"syntax": "typescript", | ||
"tsx": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
import '../dist/main.js'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.