Skip to content

Commit

Permalink
chore(deps): update dependency @taiga-ui/eslint-plugin-experience to …
Browse files Browse the repository at this point in the history
…v0.37.0 (#53)

* chore(deps): update dependency @taiga-ui/eslint-plugin-experience to v0.37.0

* chore: update

---------

Co-authored-by: splincode <[email protected]>
  • Loading branch information
taiga-family-bot and splincode authored Nov 20, 2023
1 parent 0a9f2b7 commit 2746569
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
26 changes: 13 additions & 13 deletions apps/demo/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ import express from 'express';

import bootstrap from './src/main.server';

function run(): void {
const port = process.env[`PORT`] || 4000;

// Start up the Node server
const server = app();

server.listen(port, () => {
console.info(`Node Express server listening on http://localhost:${port}`);
});
}

run();

// The Express app is exported so that it can be used by serverless Functions.
export function app(): express.Express {
const server = express();
Expand Down Expand Up @@ -54,16 +67,3 @@ export function app(): express.Express {

return server;
}

function run(): void {
const port = process.env[`PORT`] || 4000;

// Start up the Node server
const server = app();

server.listen(port, () => {
console.info(`Node Express server listening on http://localhost:${port}`);
});
}

run();
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@taiga-ui/cdk": "3.54.0",
"@taiga-ui/commitlint-config": "0.4.1",
"@taiga-ui/core": "3.54.0",
"@taiga-ui/eslint-plugin-experience": "0.34.0",
"@taiga-ui/eslint-plugin-experience": "0.37.1",
"@taiga-ui/icons": "3.54.0",
"@taiga-ui/kit": "3.54.0",
"@taiga-ui/prettier-config": "0.6.0",
Expand Down

0 comments on commit 2746569

Please sign in to comment.