๐Ÿ“ฆ colinhacks / zshy

๐Ÿ“„ b.cjs ยท 16 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.pluginB = void 0;
/**
 * Plugin B - Another example plugin for testing
 */
require("./plugin-b.css");
exports.pluginB = {
    name: "plugin-b",
    version: "1.0.0",
    configure(options) {
        console.log("Plugin B configured with:", options);
    },
};
exports.default = exports.pluginB;
//# sourceMappingURL=b.cjs.map