Skip to content

Commit

Permalink
0.22.1-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
clairton committed May 15, 2023
1 parent 6f35180 commit 25c7150
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ENV NODE_ENV=production
RUN addgroup -S u && adduser -S u -G u
WORKDIR /home/u/app

COPY --from=builder /app/dist ./dist
COPY --from=builder /app/lib ./lib
COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/yarn.lock ./yarn.lock

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ ConditionPathExists=/opt/unoapi/data
After=network.target

[Service]
ExecStart=/usr/bin/node dist/index.js
ExecStart=/usr/bin/node lib/index.js
WorkingDirectory=/opt/unoapi
CPUAccounting=yes
MemoryAccounting=yes
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "unoapi-cloud",
"version": "0.21.4",
"version": "0.22.1-dev",
"description": "Unoapi Cloud",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./dist"
"./lib"
],
"repository": "github.com/clairton/unoapi-cloud",
"author": "Clairton Rodrig Heinzen<[email protected]>",
"license": "GPL-3.0",
"private": false,
"scripts": {
"dev": "./node_modules/nodemon/bin/nodemon.js",
"start": "node dist/index.js",
"start": "node lib/index.js",
"lint": "eslint src",
"test": "ENV_FILE=./.env.test jest --coverage",
"build": "./node_modules/typescript/bin/tsc -p .",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"exclude": ["./coverage", "./dist", "__tests__", "jest.config.js"],
"exclude": ["./coverage", "./lib", "__tests__", "jest.config.js"],
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
Expand Down

0 comments on commit 25c7150

Please sign in to comment.