Skip to content

Commit 880d856

Browse files
author
Russell Green
committed
chore: updates
1 parent dfb68f5 commit 880d856

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raspberry-pi-client",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

scripts/initialize-environment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
const fs = require("fs");
22
const { env } = require("process");
3-
const { version } = require("./package.json");
3+
const { version } = require("../package.json");
44
const configEnvName = "RPC_CONFIG";
55
const configJson = env[configEnvName];
66
const nodeEnv = env["NODE_ENV"];
7-
const configFilePath = "./data/config.json";
7+
const configFilePath = "../data/config.json";
88

99
function initializeConfig() {
1010
const hasConfig = Boolean(configJson);

0 commit comments

Comments
 (0)