build: add setup entrypoints for migrated channel plugins

This commit is contained in:
Peter Steinberger
2026-03-15 20:39:47 -07:00
parent 371366e9eb
commit 98dcbd3e7e
9 changed files with 25 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
"extensions": [
"./index.ts"
],
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "line",
"label": "LINE",

View File

@@ -11,6 +11,7 @@
"extensions": [
"./index.ts"
],
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "mattermost",
"label": "Mattermost",

View File

@@ -0,0 +1,5 @@
import { mattermostPlugin } from "./src/channel.js";
export default {
plugin: mattermostPlugin,
};

View File

@@ -11,6 +11,7 @@
"extensions": [
"./index.ts"
],
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "nostr",
"label": "Nostr",

View File

@@ -0,0 +1,5 @@
import { nostrPlugin } from "./src/channel.js";
export default {
plugin: nostrPlugin,
};

View File

@@ -11,6 +11,7 @@
"extensions": [
"./index.ts"
],
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "zalo",
"label": "Zalo",

View File

@@ -0,0 +1,5 @@
import { zaloPlugin } from "./src/channel.js";
export default {
plugin: zaloPlugin,
};

View File

@@ -12,6 +12,7 @@
"extensions": [
"./index.ts"
],
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "zalouser",
"label": "Zalo Personal",

View File

@@ -0,0 +1,5 @@
import { zalouserPlugin } from "./src/channel.js";
export default {
plugin: zalouserPlugin,
};