Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Fix local exports inadvertently broken in `v0.1.1`
  • Loading branch information
mindrones committed Sep 9, 2024
1 parent ae96319 commit 0430152
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 20240909

- [`@datakit/[email protected].1`](./packages/tx/CHANGELOG.md)
- [`@datakit/[email protected].2`](./packages/tx/CHANGELOG.md)

## 20240828

Expand Down
4 changes: 4 additions & 0 deletions packages/tx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @datakit/tx

## v0.1.2

- Fix local exports inadvertently broken in `v0.1.1`

## v0.1.1

- Change how we re-exports `@svizzle/utils` to enable its autocompletion
Expand Down
2 changes: 1 addition & 1 deletion packages/tx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
"url": "github:mindrones/datakit"
},
"type": "module",
"version": "0.1.1"
"version": "0.1.2"
}
6 changes: 3 additions & 3 deletions packages/tx/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ export * from '@svizzle/utils/src/modules/string-string.js';

export {default as areEquals} from 'just-compare';

export * from './src/array-any.js';
export * from './src/array-number.js';
export * from './src/array-string.js';
export * from './array-any.js';
export * from './array-number.js';
export * from './array-string.js';

0 comments on commit 0430152

Please sign in to comment.