Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
4rthem committed Dec 12, 2023
1 parent 944e66f commit 4035d31
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions databox/client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ USER node

WORKDIR /srv/workspace/databox/client

ENV NODE_ENV=development

RUN pnpm install \
&& mv index.tpl.html index.html

Expand Down
2 changes: 1 addition & 1 deletion databox/client/config-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
return {};
}

const types = [...v.matchAll(/([\w*]+\/[\w*+.-]+)(\([\w,]*\))?/g)];
const types = [...v.matchAll(/([\w*]+\/[\w*+.-]+)(\([.\w,]*\))?/g)];
const struct = {};
for (const t of types) {
struct[t[1]] = t[2]
Expand Down
2 changes: 1 addition & 1 deletion uploader/client/config-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
return {};
}

const types = [...v.matchAll(/([\w*]+\/[\w*+.-]+)(\([\w,]*\))?/g)];
const types = [...v.matchAll(/([\w*]+\/[\w*+.-]+)(\([.\w,]*\))?/g)];
const struct = {};
for (const t of types) {
struct[t[1]] = t[2]
Expand Down

0 comments on commit 4035d31

Please sign in to comment.