-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: converting most of the library over to TS * feat: moving all unit tests over to TS, fixing issues * fix: updating the ci workflow to build the dist * fix: various problems * fix: refactoring the fetch wrapper to use the Headers API * fix: broken tests * fix: better excluding the dist from jest * fix: refactoring away the dynamic command loading system for something more strict * fix: update GHA workflow * test(node12): point to right file path * chore: small jest config fix Saw the following error: ``` jest-haste-map: Haste module naming collision: rdme The following files share their name; please adjust your hasteImpl: * <rootDir>/dist/package.json * <rootDir>/package.json ``` this is a fix for that, stolen from here: jestjs/jest#8114 (comment) * chore: fix @actions/core import * chore: fix core import in another spot * chore: simplify debug command * chore: updating contributing guidelines * revert: use key variable rather than opts this was bugging me in the diff lol * feat: stricter return types for commands * fix: another strict return type * fix: another stricter return type * fix: use command-line-usage types * fix: more getSpecs types fixes Co-authored-by: Kanad Gupta <[email protected]>
- Loading branch information
1 parent
a1d6b4f
commit 5ed97cc
Showing
102 changed files
with
4,943 additions
and
3,069 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
coverage/ | ||
dist/ | ||
!.alexrc.js |
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
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,3 +1,4 @@ | ||
node_modules/ | ||
coverage/ | ||
dist/ | ||
node_modules/ | ||
swagger.json |
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 +1,2 @@ | ||
coverage/ | ||
dist/ |
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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.