@datapos/datapos-development 0.3.17 → 0.3.18

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -78,7 +78,7 @@ async function clearDirectory(directoryPath) {
78
78
 
79
79
  // Operations - Send Deployment Notice
80
80
  async function sendDeploymentNotice() {
81
- const configJSON = await readJSONFile('src/config.json');
81
+ const configJSON = await readJSONFile('config.json');
82
82
  const options = {
83
83
  body: JSON.stringify(configJSON),
84
84
  headers: { 'Content-Type': 'application/json' },
@@ -127,7 +127,7 @@ async function uploadDirectoryToR2(sourceDirectory, uploadDirectory) {
127
127
 
128
128
  // Operations - Upload Module Configuration
129
129
  async function uploadModuleConfig() {
130
- const configJSON = await readJSONFile('src/config.json');
130
+ const configJSON = await readJSONFile('config.json');
131
131
  const stateId = configJSON.id;
132
132
  const options = {
133
133
  body: JSON.stringify(configJSON),
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "index.js",
7
- "version": "0.3.17",
7
+ "version": "0.3.18",
8
8
  "devDependencies": {
9
9
  "eslint": "^9.28.0",
10
10
  "nanoid": "^5.1.5",