Skip to content

Commit

Permalink
Merge pull request #13 from squeeble-ink/bugfix/resolve-develop-build
Browse files Browse the repository at this point in the history
Fixed build issue and svg issue
  • Loading branch information
TessavWalstijn authored Apr 14, 2024
2 parents 2fc5842 + 7dc78f9 commit 42deca7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "nodemon ./index.js",
"start": "node ./index.js",
"prod": "cross-env NODE_ENV=production node ./index.js"
"dev": "nodemon ./source/index.js",
"start": "node ./source/index.js",
"prod": "cross-env NODE_ENV=production node ./source/index.js"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion source/routes/stackExchange.route.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ router.get('/', async (req, res) => {
missingInfo = [
'seSite is required!',
'Example:',
'&seSite=stackoverflow',
'&seSite=stackoverflow',
]
return res.send(
SVG(
Expand Down
5 changes: 3 additions & 2 deletions stack-readme-dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM node:lts-bookworm-slim
WORKDIR /base
ARG api_key
COPY ./routes/ /base/routes/
COPY ./index.js /base/
COPY ./source/ /base/source/
COPY ./.pnp.cjs /base/
COPY ./.pnp.loader.mjs /base/
COPY ./.gitignore /base/
COPY ./.prettierrc /base/
COPY ./package.json /base/
Expand Down
5 changes: 3 additions & 2 deletions stack-readme-prd.dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM node:lts-bookworm-slim
WORKDIR /base
ARG api_key
COPY ./routes/ /base/routes/
COPY ./index.js /base/
COPY ./source/ /base/source/
COPY ./.pnp.cjs /base/
COPY ./.pnp.loader.mjs /base/
COPY ./.gitignore /base/
COPY ./.prettierrc /base/
COPY ./package.json /base/
Expand Down

0 comments on commit 42deca7

Please sign in to comment.