Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading