Skip to content

Commit

Permalink
[feat] - use QUARTO_NO_TYPECHECK=1 to skip typechecking on dev (on un…
Browse files Browse the repository at this point in the history
…ix for now)
  • Loading branch information
cscheid committed Jan 21, 2025
1 parent 64aaebd commit 7ad79ec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package/scripts/common/quarto
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,15 @@ if [ -f "$DEV_PATH" ]; then
QUARTO_IMPORT_MAP_ARG=--importmap=$QUARTO_SRC_PATH/import_map.json

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

# Allow calls to override the target
if [ -z ${QUARTO_TARGET+x} ]; then
QUARTO_TARGET=$DEV_PATH
fi

export QUARTO_BIN_PATH=$SCRIPT_PATH
export QUARTO_SHARE_PATH="${QUARTO_SHARE_PATH=$QUARTO_SRC_PATH/resources/}"
if [ -z ${QUARTO_DEBUG+x} ]; then
Expand Down

0 comments on commit 7ad79ec

Please sign in to comment.