Skip to content

Commit 7ad79ec

Browse files
committed
[feat] - use QUARTO_NO_TYPECHECK=1 to skip typechecking on dev (on unix for now)
1 parent 64aaebd commit 7ad79ec

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

package/scripts/common/quarto

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,15 @@ if [ -f "$DEV_PATH" ]; then
5252
QUARTO_IMPORT_MAP_ARG=--importmap=$QUARTO_SRC_PATH/import_map.json
5353

5454
# Turn on type checking for dev version
55-
QUARTO_DENO_OPTIONS=--check
55+
if [ -z ${QUARTO_NO_TYPECHECK+x} ]; then
56+
QUARTO_DENO_OPTIONS=--check
57+
fi
5658

5759
# Allow calls to override the target
5860
if [ -z ${QUARTO_TARGET+x} ]; then
5961
QUARTO_TARGET=$DEV_PATH
6062
fi
63+
6164
export QUARTO_BIN_PATH=$SCRIPT_PATH
6265
export QUARTO_SHARE_PATH="${QUARTO_SHARE_PATH=$QUARTO_SRC_PATH/resources/}"
6366
if [ -z ${QUARTO_DEBUG+x} ]; then

0 commit comments

Comments
 (0)