@maskweaver/plugin 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
|
-
var MaskweaverPlugin = async (
|
|
3
|
-
|
|
4
|
-
await client.app.log({
|
|
5
|
-
service: "maskweaver",
|
|
6
|
-
level: "info",
|
|
7
|
-
message: "Maskweaver plugin loaded (minimal v0.1.6)"
|
|
8
|
-
});
|
|
2
|
+
var MaskweaverPlugin = async (_ctx) => {
|
|
3
|
+
console.log("[Maskweaver] Plugin loaded v0.1.8");
|
|
9
4
|
return {};
|
|
10
5
|
};
|
|
11
6
|
var src_default = MaskweaverPlugin;
|