We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64aaebd commit 7ad79ecCopy full SHA for 7ad79ec
package/scripts/common/quarto
@@ -52,12 +52,15 @@ if [ -f "$DEV_PATH" ]; then
52
QUARTO_IMPORT_MAP_ARG=--importmap=$QUARTO_SRC_PATH/import_map.json
53
54
# Turn on type checking for dev version
55
- QUARTO_DENO_OPTIONS=--check
+ if [ -z ${QUARTO_NO_TYPECHECK+x} ]; then
56
+ QUARTO_DENO_OPTIONS=--check
57
+ fi
58
59
# Allow calls to override the target
60
if [ -z ${QUARTO_TARGET+x} ]; then
61
QUARTO_TARGET=$DEV_PATH
62
fi
63
+
64
export QUARTO_BIN_PATH=$SCRIPT_PATH
65
export QUARTO_SHARE_PATH="${QUARTO_SHARE_PATH=$QUARTO_SRC_PATH/resources/}"
66
if [ -z ${QUARTO_DEBUG+x} ]; then
0 commit comments