weapp-tailwindcss
Version:
把 tailwindcss 原子化样式思想,带给小程序开发者们! bring tailwindcss to miniprogram developers!
32 lines (31 loc) • 978 B
JavaScript
//#region src/bundlers/webpack/loaders/runtime-registry.ts
const runtimeRegistryHolder = globalThis;
const runtimeRegistry = runtimeRegistryHolder.__WEAPP_TW_WEBPACK_LOADER_RUNTIME_REGISTRY__ ?? (runtimeRegistryHolder.__WEAPP_TW_WEBPACK_LOADER_RUNTIME_REGISTRY__ = /* @__PURE__ */ new Map());
function setWebpackLoaderRuntime(key, entry) {
runtimeRegistry.set(key, entry);
}
function deleteWebpackLoaderRuntime(key) {
runtimeRegistry.delete(key);
}
function getWebpackLoaderRuntime(key) {
return key ? runtimeRegistry.get(key) : void 0;
}
//#endregion
Object.defineProperty(exports, "deleteWebpackLoaderRuntime", {
enumerable: true,
get: function() {
return deleteWebpackLoaderRuntime;
}
});
Object.defineProperty(exports, "getWebpackLoaderRuntime", {
enumerable: true,
get: function() {
return getWebpackLoaderRuntime;
}
});
Object.defineProperty(exports, "setWebpackLoaderRuntime", {
enumerable: true,
get: function() {
return setWebpackLoaderRuntime;
}
});