-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update jest to v29 and rollup to v3 (#67)
* Update packages and fix get run stack values * Update actions and jest * Add max workers to jest * Add --experimental-vm-modules * --experimental-vm-modules on test ci * ES modules jest * Convert prettier to json * Fix module hell * Add max workers again * Add runinband * one worker * run without cache * Upload core dump * Fix file format * run with sudo * ls * test * maxWorkers again * --experimental-vm-modules again * Change jest flags * a * Fixed emsdk version to 3.1.26 * Remove unused jest flags
- Loading branch information
Showing
18 changed files
with
2,116 additions
and
1,727 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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"endOfLine": "lf", | ||
"quoteProps": "consistent", | ||
"semi": false, | ||
"printWidth": 140, | ||
"tabWidth": 4 | ||
} |
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
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
Submodule lua
updated
40 files
+119 −116 | lapi.c | |
+10 −7 | lapi.h | |
+31 −25 | lauxlib.c | |
+2 −2 | lcorolib.c | |
+26 −26 | ldebug.c | |
+1 −1 | ldebug.h | |
+99 −76 | ldo.c | |
+4 −3 | ldo.h | |
+24 −25 | lfunc.c | |
+2 −2 | lfunc.h | |
+51 −46 | lgc.c | |
+2 −0 | lgc.h | |
+2 −2 | llex.c | |
+4 −4 | lobject.c | |
+15 −2 | lobject.h | |
+1 −3 | loslib.c | |
+11 −11 | lparser.c | |
+27 −30 | lstate.c | |
+7 −7 | lstate.h | |
+2 −4 | ltable.c | |
+0 −1 | ltable.h | |
+1 −1 | ltablib.c | |
+18 −18 | ltests.c | |
+19 −19 | ltm.c | |
+1 −1 | lua.h | |
+3 −2 | luaconf.h | |
+3 −3 | lundump.c | |
+16 −11 | lutf8lib.c | |
+51 −53 | lvm.c | |
+5 −0 | lvm.h | |
+7 −2 | makefile | |
+146 −85 | manual/manual.of | |
+12 −0 | testes/bitwise.lua | |
+26 −0 | testes/cstack.lua | |
+9 −0 | testes/files.lua | |
+20 −0 | testes/locals.lua | |
+30 −5 | testes/main.lua | |
+29 −9 | testes/nextvar.lua | |
+7 −2 | testes/strings.lua | |
+11 −1 | testes/utf8.lua |
Oops, something went wrong.