Skip to content

Commit

Permalink
using version from package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
esterlus committed Oct 18, 2024
1 parent 8d96957 commit a021823
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uhttp-exit-app",
"version": "3.3.0",
"version": "3.3.1",
"description": "u(nlinked)HTTP exit application",
"author": "HOPR Association",
"main": "src/index.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import WebSocket from 'ws';
import { version as Version } from '../package.json';
import {
DpApi,
EndpointApi,
Expand All @@ -16,7 +17,7 @@ import {
import * as DB from './db';
import * as RequestStore from './request-store';
import * as ResponseSegmentStore from './response-segment-store';
import Version from './version';

import log from './logger';

// WebSocket heartbeats
Expand Down
1 change: 0 additions & 1 deletion src/version.ts

This file was deleted.

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
// "resolveJsonModule": true, /* Enable importing .json files. */
"resolveJsonModule": true /* Enable importing .json files. */,
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */

Expand Down

0 comments on commit a021823

Please sign in to comment.