npm install @masx200/rollup-plugin-http-resolve --save
缓存默认为内存缓存, 添加了文件系统缓存的功能,可以按需使用
import { fileCache, httpResolve } from "@masx200/rollup-plugin-http-resolve";
httpResolve({ cache: new fileCache() });
// rollup.config.js
import { httpResolve } from "@masx200/rollup-plugin-http-resolve";
export default {
input: "index.js",
plugins: [
httpResolve({
cache,
}),
],
};
const vol = Volume.fromJSON({
"/index.js": `
import {h} from "preact";
console.log(h);
`,
});
const memfs = createFs(vol) as IPromisesAPI;
const rolled = await rollup({
input: "/index.js",
plugins: [
httpResolve({
fallback(id) {
// Avoid local relative path
if (!id.startsWith(".")) {
return `https://esm.sh/${id}`;
}
},
}),
memfsPlugin(memfs),
],
});
const out = await rolled.generate({ format: "es" });
const code = out.output[0].code;
Rewrite https://
code by your self.
import ts from "typescript";
export default {
plugins: [
httpResolve(),
{
name: "transform-cdn",
transform(code, id) {
if (id?.startsWith("https://")) {
const out = ts.transpileModule(code, {
compilerOptions: {
module: ts.ModuleKind.ESNext,
target: ts.ScriptTarget.ES5,
},
});
return {
code: out.outputText,
map: out.sourceMapText,
};
}
},
},
],
});
MIT