use process.cwd() for correct path

This commit is contained in:
Karsten Hassel
2021-07-13 23:39:55 +02:00
parent 9aa0af4f9c
commit e75e4e2284
43 changed files with 61 additions and 57 deletions

View File

@@ -4,7 +4,8 @@
* MIT Licensed.
*/
exports.configFactory = function (options) {
return Object.assign({
return Object.assign(
{
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
@@ -20,5 +21,7 @@ exports.configFactory = function (options) {
},
modules: []
}, options);
},
options
);
};

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("./default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
ipWhitelist: []
});

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("./default.js").configFactory();
let config = require(process.cwd() + "/tests/configs/default.js").configFactory();
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {

View File

@@ -3,7 +3,7 @@
* By rejas
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "alert",

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rejas
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -5,7 +5,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rejas
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Sergey Morozov
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Sergey Morozov
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "clock",

View File

@@ -2,7 +2,7 @@
*
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "clock",

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Sergey Morozov
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Johan Hammar
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
language: "es",
timeFormat: 12,

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
language: "es",
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
language: "es",
timeFormat: 12,

View File

@@ -4,7 +4,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
language: "es",
timeFormat: 12,

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rejas
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rejas
* MIT Licensed.
*/
let config = require("../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "helloworld",

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "helloworld",

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "helloworld",

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -2,7 +2,7 @@
*
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -2,7 +2,7 @@
*
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules:
// Using exotic content. This is why don't accept go to JSON configuration file
(function () {

View File

@@ -3,7 +3,7 @@
* By rejas https://github.com/rejas
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "compliments",

View File

@@ -3,7 +3,7 @@
* By fewieden https://github.com/fewieden
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By fewieden https://github.com/fewieden
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
modules: [
{
module: "weather",

View File

@@ -3,7 +3,7 @@
* By fewieden https://github.com/fewieden
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
units: "imperial",
modules: [

View File

@@ -3,7 +3,7 @@
* By fewieden https://github.com/fewieden
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By fewieden https://github.com/fewieden
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [

View File

@@ -3,7 +3,7 @@
* By rejas
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
units: "imperial",
modules: [

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("./default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
ipWhitelist: ["x.x.x.x"]
});

View File

@@ -3,7 +3,7 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("./default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
port: 8090
});

View File

@@ -3,9 +3,10 @@
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const config = require("./default.js").configFactory({
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.10.1"]
});
delete config.modules;
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {