Skip to content

Commit

Permalink
Merge pull request #167 from gjsjohnmurray/fix-const-types
Browse files Browse the repository at this point in the history
Bump NPM types package to 3.0.4 to fix exporting of constants
  • Loading branch information
gjsjohnmurray authored Nov 7, 2022
2 parents 63a014e + 86cdea4 commit 5eb7569
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Package defining the interfaces used in the API that is published by the `inters

# Changelog

### v3.0.4

- Export constants correctly.

### v3.0.0

- First release, numbered to align with the first published version of Server Manager 3.
4 changes: 2 additions & 2 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export declare const EXTENSION_ID = 'intersystems-community.servermanager';
export declare const AUTHENTICATION_PROVIDER = 'intersystems-server-credentials';
export const EXTENSION_ID: string;
export const AUTHENTICATION_PROVIDER: string;

export interface IServerName {
name: string;
Expand Down
4 changes: 3 additions & 1 deletion types/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
module.exports = {
};
EXTENSION_ID: 'intersystems-community.servermanager',
AUTHENTICATION_PROVIDER: 'intersystems-server-credentials'
};
2 changes: 1 addition & 1 deletion types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@intersystems-community/intersystems-servermanager",
"version": "3.0.2",
"version": "3.0.4",
"description": "InterSystems Server Manager VS Code extension API interfaces and constants",
"types": "index.d.ts",
"main": "index.js",
Expand Down

0 comments on commit 5eb7569

Please sign in to comment.