Skip to content

Commit 727c6e6

Browse files
committedJul 3, 2022
Fixed config merge
1 parent 7ed52e9 commit 727c6e6

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed
 

‎src/components/config.ts

+8-7
Original file line numberDiff line numberDiff line change
@@ -81,21 +81,22 @@ export default class Config {
8181
} | {
8282
testing: Partial<ConfigType>;
8383
}) {
84+
this._config = this.mergeObject(config, this._config);
85+
8486
switch (process.env.NODE_ENV) {
8587
case "production":
8688
if ((config as any).production)
87-
this._config = this.mergeObject((config as any).production, this._config)
88-
break
89+
this._config = this.mergeObject((config as any).production, this._config);
90+
break;
8991
case "development":
9092
if ((config as any).development)
91-
this._config = this.mergeObject((config as any).development, this._config)
92-
break
93+
this._config = this.mergeObject((config as any).development, this._config);
94+
break;
9395
case "testing":
9496
if ((config as any).testing)
95-
this._config = this.mergeObject((config as any).testing, this._config)
96-
break
97+
this._config = this.mergeObject((config as any).testing, this._config);
98+
break;
9799
default:
98-
this._config = this.mergeObject(config, this._config)
99100
}
100101

101102
if (process.env.SAFFRON_MODE && ["main", "worker"].includes(process.env.SAFFRON_MODE))

‎src/modules/scheduler/index.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import {JobStatus} from "../../components/JobStatus";
77
import Worker from "../workers";
88
import {ConfigOptions} from "../../middleware/ConfigOptions";
99
import glob from "glob";
10+
import * as path from "path";
1011

11-
const path = process.cwd();
12+
const pathCwd = process.cwd();
1213

1314
export default class Scheduler {
1415

@@ -191,16 +192,16 @@ export default class Scheduler {
191192
private scanSourceFiles(): Promise<void> {
192193
return new Promise((resolve, reject) => {
193194
let sourcesPath = Config.getOption(ConfigOptions.SOURCES_PATH);
194-
glob(`${path + sourcesPath}/**`, {}, (error: any, files: string[]) => {
195+
glob(`${path.resolve(pathCwd, sourcesPath)}/**`, {}, (error: any, files: string[]) => {
195196
if (error) {
196197
Events.emit('scheduler.path.error', error);
197198
return reject(error);
198199
}
199200

200-
let acceptedFiles = new RegExp(/.*js/);
201201
if (!files || files.length <= 0)
202202
return reject(new Error("No source files were found."));
203203

204+
let acceptedFiles = new RegExp(/.*js/);
204205
let rawSources = files.filter((file: any) => acceptedFiles.test(file))
205206

206207
let sources = rawSources.map((file: string) => {

0 commit comments

Comments
 (0)
Please sign in to comment.