Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: replace unpkg w/ jsdelivr #8726

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app/src/sandbox/eval/transpilers/reason/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class ReasonTranspiler extends Transpiler {
'https://cdn.jsdelivr.net/gh/jaredly/reason-react@more-docs/docs/bucklescript.js'
);
await addScript('https://reason.surge.sh/bucklescript-deps.js');
await addScript('https://unpkg.com/[email protected]/refmt.js');
await addScript('https://cdn.jsdelivr.net/npm/[email protected]/refmt.js');
}

const reasonModules = loaderContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ const loadStencilVersion = (version: string) => {
loadedStencilVersion = version;

ctx.importScripts(
`https://unpkg.com/@stencil/core@${version}/compiler/stencil.js`
`https://cdn.jsdelivr.net/npm/@stencil/core@${version}/compiler/stencil.js`
);
}
};

ctx.importScripts('https://unpkg.com/[email protected]/lib/typescript.js');
ctx.importScripts('https://cdn.jsdelivr.net/npm/[email protected]/lib/typescript.js');

async function compileStencil(data) {
const { code, path, stencilVersion } = data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const childHandler = new ChildHandler('svelte-worker');
self.window = self;

function getV3Code({ code, version, path }) {
self.importScripts(`https://unpkg.com/svelte@${version}/compiler.js`);
self.importScripts(`https://cdn.jsdelivr.net/npm/svelte@${version}/compiler.js`);

// @ts-ignore
const { js, warnings } = self.svelte.compile(code, {
Expand Down Expand Up @@ -38,7 +38,7 @@ function getV3Code({ code, version, path }) {
}

function getV2Code({ code, version, path }) {
self.importScripts(`https://unpkg.com/svelte@${version}/compiler/svelte.js`);
self.importScripts(`https://cdn.jsdelivr.net/npm/svelte@${version}/compiler/svelte.js`);

let error = null;
const warnings = [];
Expand Down Expand Up @@ -74,7 +74,7 @@ function getV2Code({ code, version, path }) {
}

function getV1Code({ code, version, path }) {
self.importScripts(`https://unpkg.com/svelte@${version}/compiler/svelte.js`);
self.importScripts(`https://cdn.jsdelivr.net/npm/svelte@${version}/compiler/svelte.js`);

let error = null;
const warnings = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function compile(data) {

if (typescriptVersion !== '3.4.1') {
self.importScripts(
`https://unpkg.com/typescript@${typescriptVersion}/lib/typescript.js`
`https://cdn.jsdelivr.net/npm/typescript@${typescriptVersion}/lib/typescript.js`
);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/utils/dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const resolveVersionFromUnpkg = (
version: string
): Promise<string> => {
return fetchWithRetries(
`https://unpkg.com/${dep}@${encodeURIComponent(version)}/package.json`
`https://cdn.jsdelivr.net/npm/${dep}@${encodeURIComponent(version)}/package.json`
).then(x => x.version);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default class UNPKGRequest extends BaseFileSystem implements FileSystem {
* Construct an HTTPRequest file system backend with the given options.
*/
public static Create(opts: UNPKGRequestOptions, cb: BFSCallback<UNPKGRequest>): void {
const URL = `https://unpkg.com/${opts.dependency}@${opts.version}`;
const URL = `https://cdn.jsdelivr.net/npm/${opts.dependency}@${opts.version}`;

asyncDownloadFile(`${URL}/?meta`, "json", (e, data: UNPKGMeta) => {
if (e) {
Expand Down Expand Up @@ -413,7 +413,7 @@ export default class UNPKGRequest extends BaseFileSystem implements FileSystem {
if (filePath.charAt(0) === '/') {
filePath = filePath.slice(1);
}
return `https://unpkg.com/${this.dependency}@${this.version}/${filePath}`;
return `https://cdn.jsdelivr.net/npm/${this.dependency}@${this.version}/${filePath}`;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ export async function fetchAndAddDependencies(
let depVersion = version;

try {
await doFetch(`https://unpkg.com/${dep}@${version}/package.json`)
await doFetch(`https://cdn.jsdelivr.net/npm/${dep}@${version}/package.json`)
.then(x => JSON.parse(x))
.then(x => {
depVersion = x.version;
Expand Down