Skip to content

Commit

Permalink
Fixes to the package.json and tsconfig.json to help publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMBligh committed Jan 23, 2024
1 parent 98b6405 commit 99c2b1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export { CdrConfig } from './src/models/cdr-config';
export { EndpointConfig } from './src/models/endpoint-config';
export { DsbRequest } from './src/models/dsb-request';
export { DsbResponse } from './src/models/dsb-response';
export { CdrUser } from './src/models/user';


export {
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cds-au/holder-sdk",
"version": "2.0.0",
"version": "2.0.1",
"description": "NodeJS middleware to handle error generation in line with Australian Consumer Data Standards technical specifications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -9,7 +9,8 @@
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/index.d.ts",
"dist/index.js"
"dist/index.js",
"images"
],
"scripts": {
"build": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
// "declaration": true, /* Generates corresponding '.d.ts' file. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
Expand Down

0 comments on commit 99c2b1d

Please sign in to comment.