From: Chris Duncan Date: Wed, 25 Feb 2026 22:28:26 +0000 (-0800) Subject: Avoid committing sensitive environment variables. Optimize WASM build for speed and... X-Git-Tag: v1.0.0~21 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=1c28e8ee1a8683a851176f966db6c1233e8a1894;p=nano25519.git Avoid committing sensitive environment variables. Optimize WASM build for speed and product text file for analysis. --- diff --git a/.gitignore b/.gitignore index 0dd2f76..15adba0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,10 @@ # SPDX-FileCopyrightText: 2026 Chris Duncan # SPDX-License-Identifier: GPL-3.0-or-later +# dotenv environment variables file +.env +env.* + # Dependency directories node_modules/ diff --git a/asconfig.json b/asconfig.json index 07387d5..11c4e61 100644 --- a/asconfig.json +++ b/asconfig.json @@ -1,8 +1,9 @@ { "options": { "outFile": "./build/nano-nacl.wasm", + "textFile": "./build/nano-nacl.wat", "optimizeLevel": 3, - "shrinkLevel": 2, + "shrinkLevel": 0, "converge": true, "noAssert": true, "uncheckedBehavior": "always",