Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/vendor_deps.ts
3544 views
1
/*
2
3
These are special dependencies that need to be explicitly imported here
4
so that our vendoring process finds them. They're used in dynamic imports
5
that are not found by the static analysis of the vendoring process.
6
7
This is only used by vendor.sh and should not be imported by any other code.
8
*/
9
10
// for puppeteer
11
import { dirname, join, SEP } from "https://deno.land/[email protected]/path/mod.ts";
12
import puppeteer from "https://deno.land/x/[email protected]/mod.ts";
13
import _jszip from "https://dev.jspm.io/[email protected]";
14
// import * as _base64 from "https://deno.land/[email protected]/encoding/base64.ts";
15
16
// I don't quite understand why the import map is not resolving this one
17
import * as _base64_2 from "https://deno.land/[email protected]/encoding/base64.ts";
18
19