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.
- package/lib/client/base.d.ts +0 -2
- package/lib/client/base.js +1 -2
- package/package.json +1 -1
package/lib/client/base.d.ts
CHANGED
|
@@ -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
|
}
|
package/lib/client/base.js
CHANGED
|
@@ -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.
|
|
328
|
+
locationsFullPaths[key] = (0, node_path_1.join)(process.cwd(), locations.base, location);
|
|
330
329
|
else
|
|
331
330
|
locationsFullPaths[key] = location;
|
|
332
331
|
}
|