Skip to content

Commit

Permalink
fix:debug default to false, close #7
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangnanscu committed Oct 11, 2024
1 parent 66aa1a4 commit 2a6b086
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xiangnanscu/js2lua",
"version": "0.45.0",
"version": "0.46.0",
"type": "module",
"description": "Writing LuaJIT with the expressiveness of JavaScript.",
"main": "src/js2lua.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/js2lua.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const TMP_VAR_NAME = "__tmp";
const ES_PAIRS = "esPairs";
const CASE_EXP_NAME = "caseExp";
const defaultOptions = {
debug: true,
debug: false,
tagArrayExpression: true,
importStatementHoisting: true,
transform$SymbolToDollar: true,
Expand Down

0 comments on commit 2a6b086

Please sign in to comment.