seyfert 2.1.1-dev-12488366079.0 → 2.1.1-dev-12489494190.0

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.
@@ -135,10 +135,8 @@ export interface StartOptions {
135
135
  }
136
136
  interface RCLocations extends ExtendedRCLocations {
137
137
  base: string;
138
- output: string;
139
138
  commands?: string;
140
139
  langs?: string;
141
- templates?: string;
142
140
  events?: string;
143
141
  components?: string;
144
142
  }
@@ -318,7 +318,6 @@ class BaseClient {
318
318
  const { locations, debug, ...env } = seyfertConfig;
319
319
  const locationsFullPaths = {
320
320
  base: locations.base,
321
- output: locations.output,
322
321
  };
323
322
  for (const i in locations) {
324
323
  const key = i;
@@ -326,7 +325,7 @@ class BaseClient {
326
325
  if (key in locationsFullPaths)
327
326
  continue;
328
327
  if (typeof location === 'string')
329
- locationsFullPaths[key] = (0, node_path_1.join)(process.cwd(), locations.output, location);
328
+ locationsFullPaths[key] = (0, node_path_1.join)(process.cwd(), locations.base, location);
330
329
  else
331
330
  locationsFullPaths[key] = location;
332
331
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seyfert",
3
- "version": "2.1.1-dev-12488366079.0",
3
+ "version": "2.1.1-dev-12489494190.0",
4
4
  "description": "The most advanced framework for discord bots",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",