Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxingbaoyu committed Jun 15, 2022
1 parent 222d009 commit 43be36f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ target["lint"] = function () {
...SOURCES,
"*.{js,cjs,mjs,ts}",
"--format=codeframe",
"--ext .js,.cjs,.mjs,.ts",
"--ext",
".js,.cjs,.mjs,.ts",
]);
},
{
Expand Down Expand Up @@ -336,6 +337,6 @@ target["test"] = function () {
target["test-only"]();
};

target["test-only"] = function (args) {
target["test-only"] = function (args = []) {
yarn(["jest", ...args]);
};

0 comments on commit 43be36f

Please sign in to comment.