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

@@ -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: [