opencode-office 0.1.16 → 0.1.17
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -561,7 +561,9 @@ var copyManifest = async () => {
|
|
|
561
561
|
var OfficePlugin = async (ctx) => {
|
|
562
562
|
console.log("Microsoft Office Plugin Loaded Successfully!");
|
|
563
563
|
await copyManifest();
|
|
564
|
-
return {
|
|
564
|
+
return {
|
|
565
|
+
event: async ({ event }) => {}
|
|
566
|
+
};
|
|
565
567
|
};
|
|
566
568
|
var src_default = OfficePlugin;
|
|
567
569
|
export {
|