Skip to content

Commit

Permalink
Change providers to functions
Browse files Browse the repository at this point in the history
  • Loading branch information
rslucena committed May 18, 2024
1 parent 87951f0 commit aee0982
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/commands/pm2-workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const defaultConfigs: pm2.StartOptions = {
export default <worker[]>[
{
activated: true,
name: 'http:primary:webserver',
tsx: './src/providers/http-webserver.ts',
node: './dist/providers/http-webserver.js',
name: 'http:web:server',
tsx: './src/functions/http-web-server.ts',
node: './dist/functions/http-web-server.js',
options: { ...defaultConfigs },
},
]
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@commands/*": ["./src/commands/*"],
"@domain/*": ["./src/domain/*"],
"@infrastructure/*": ["./src/infrastructure/*"],
"@providers/*": ["./src/providers/*"],
"@providers/*": ["./src/functions/*"],
"@tests/*": ["./src/tests/*"]
}
},
Expand Down

0 comments on commit aee0982

Please sign in to comment.