Skip to content

Commit

Permalink
Merge pull request #34 from telstra/maintain/MessagingAPI-V3-SDK
Browse files Browse the repository at this point in the history
release 3.0.8
  • Loading branch information
zhanganderson authored Aug 27, 2024
2 parents 7e29502 + 8371889 commit fe3ef01
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.0.7",
"version": "3.0.8",
"license": "Apache-2.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -45,18 +45,18 @@
}
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/uuid": "^9.0.2",
"husky": "^8.0.0",
"husky": "^9.1.5",
"msw": "^1.2.1",
"size-limit": "^8.2.4",
"size-limit": "^11.1.4",
"tsdx": "^0.14.1",
"tslib": "^2.5.3",
"typescript": "^5.0.4"
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"dependencies": {
"ajv": "^6.12.6",
"axios": "^1.3.6",
"axios": "^1.7.5",
"date-fns": "^3.6.0",
"uuid": "^9.0.0"
}
Expand Down
16 changes: 16 additions & 0 deletions tsdx.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// tsdx.config.js
const replace = require('@rollup/plugin-replace');

module.exports = {
rollup(config, opts) {
config.plugins = config.plugins.map(p =>
p.name === 'replace'
? replace({
'process.env.NODE_ENV': JSON.stringify(opts.env),
preventAssignment: true,
})
: p
);
return config;
},
};

0 comments on commit fe3ef01

Please sign in to comment.