forked from quarto-dev/quarto-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration
81 lines (67 loc) · 2.75 KB
/
configuration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
# This file contains the global configuration for the quarto configuration
#
# The configuration is used both as a local runtime version of Quarto for developers
# but it also used when packaging (e.g. run configure.sh, then prepare-dist.sh, then package.sh)
# deno_dom should match release at https://github.com/b-fuze/deno-dom/releases
# Binary dependencies
export DENO=v1.37.2
# TODO figure out where 0.1.41 apple silicon libs are available
export DENO_DOM=v0.1.35-alpha-artifacts
export PANDOC=3.1.11
export DARTSASS=1.69.5
export ESBUILD=0.19.5
export TYPST=0.10.0
# NB: we can't put comments in the same line as export statements because it
# messes up our windows setup
# Bootstrap dependencies from bslib
# (use commit hash from bslib repo)
# 0.5.1 + consolidated components
export BOOTSTRAP=ad946cafdbf1c91cfd714cb39948bb203ae66e66
# NOTE: HTML TOOLS has a manually committed fill.css file which will be officially
# released in htmltools 0.5.7
export HTMLTOOLS=0.5.7
export BOOTSTRAP_FONT=1.11.1
export BOOTSWATCH=5.3.1
# javascript HTML dependencies
export ANCHOR_JS=5.0.0
export POPPER_JS=2.11.7
export CLIPBOARD_JS=2.0.11
export TIPPY_JS=6.3.7
export PDF_JS=2.8.335
# Using commit to fix https://github.com/quarto-dev/quarto-cli/issues/2430 - revert to using a release tag when included
export REVEAL_JS=e281b3234e7991283ce4dcca705dd9a6a9ebe5d2
export REVEAL_JS_MENU=2.1.0
export REVEAL_JS_CHALKBOARD=a88c134e2cf3c7780448db003e7329c3cbd8cfb4
export REVEAL_JS_PDFEXPORT=2.0.1
export LIST_JS=2.3.1
export DAY_JS=1.11.7
export ZENSCROLL_JS=4.0.2
export GITHUB_MARKDOWN_CSS=5.2.0
export GLIGHTBOX_JS=3.2.0
export DATATABLES_CONFIG=bs5/jszip-3.10.1/dt-1.13.8/b-2.4.2/b-html5-2.4.2/b-print-2.4.2/kt-2.11.0/r-2.5.0
export PDF_MAKE=0.2.7
# javascript search dependencies
export AUTOCOMPLETE_JS=1.11.1
export FUSE_JS=6.6.2
export ALGOLIA_SEARCH_JS=4.5.1
export ALGOLIA_SEARCH_INSIGHTS_JS=2.0.3
# Quarto Info Version
export QUARTO_VERSION=1.5
export QUARTO_NAME=Quarto
# Folder names. These are not the same as paths (those variable names end in _PATH).
# See set_package_paths .sh and .bat for these in context of full paths.
# See the configure .sh and .cmd scripts for overrides.
export QUARTO_PACKAGE_DIR=package
export QUARTO_DIST_DIR=dist
export QUARTO_SHARE_DIR=share
export QUARTO_BIN_DIR=bin
export QUARTO_SRC_DIR=src
export QUARTO_OUT_DIR=out
# Quarto MSI upgrade code
# Altering this will change upgrade behavior of the windows installer
# so be sure you know what you're doing before you change it
# We use a dynamic product ID for every build (forcing a major upgrade)
# so this upgrade code is the only thing that connects different versions
# of this installed product (and permits upgrades).
export QUARTO_MSI_UPGRADE_CODE=98fb2e98-96b0-46e1-a6fd-94171233d11b