openbot 0.2.7 → 0.2.9

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/cli.js CHANGED
@@ -26,7 +26,7 @@ checkNodeVersion();
26
26
  program
27
27
  .name("openbot")
28
28
  .description("OpenBot CLI - Secure and easy configuration")
29
- .version("0.2.7");
29
+ .version("0.2.9");
30
30
  async function installPlugin(source, id, quiet = false) {
31
31
  try {
32
32
  const parsed = parsePluginInstallSource(source);
package/dist/server.js CHANGED
@@ -76,6 +76,14 @@ export async function startServer(options = {}) {
76
76
  pluginsDir,
77
77
  ], {
78
78
  ignoreInitial: true,
79
+ ignored: [
80
+ "**/node_modules/**",
81
+ "**/dist/**",
82
+ "**/.git/**",
83
+ "**/package-lock.json",
84
+ "**/pnpm-lock.yaml",
85
+ "**/yarn.lock",
86
+ ],
79
87
  awaitWriteFinish: {
80
88
  stabilityThreshold: 300,
81
89
  pollInterval: 100,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openbot",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "engines": {