Skip to content

Commit

Permalink
Merge pull request #73 from coinbase/v0.0.8
Browse files Browse the repository at this point in the history
V0.0.8 Release
  • Loading branch information
erdimaden authored Jun 20, 2024
2 parents aaaf999 + 068f170 commit fa46b78
Show file tree
Hide file tree
Showing 44 changed files with 2,306 additions and 565 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Coinbase Node.js SDK Changelog

## [0.0.8] - 2024-06-18

### Added

- Support assets dynamically from the backend without SDK changes.

## [0.0.7] - 2024-06-11

### Added
Expand Down
19 changes: 19 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
extensionsToTreatAsEsm: [".ts"],
coveragePathIgnorePatterns: ["node_modules", "client", "__tests__"],
collectCoverage: true,
collectCoverageFrom: ["./src/coinbase/**"],
coverageReporters: ["html"],
verbose: true,
maxWorkers: 1,
coverageThreshold: {
global: {
branches: 80,
functions: 90,
statements: 95,
lines: 95,
},
},
};
Loading

0 comments on commit fa46b78

Please sign in to comment.