Skip to content

Commit

Permalink
Add missing exports for builds (#91)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Hadrien Gardeur <[email protected]>
Co-authored-by: Jiminy Panoz <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
4 people authored Nov 22, 2024
1 parent e9119d7 commit de236b5
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 5 deletions.
6 changes: 6 additions & 0 deletions navigator-html-injectables/CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.2] - 2024-11-22

### Fixed

- Export of `Decorator` was missing in build, preventing its usage

## [1.3.1] - 2024-11-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion navigator-html-injectables/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readium/navigator-html-injectables",
"version": "1.3.1",
"version": "1.3.2",
"type": "module",
"description": "An embeddable solution for connecting frames of HTML publications with a Readium Navigator",
"author": "readium",
Expand Down
1 change: 1 addition & 0 deletions navigator-html-injectables/src/modules/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './Decorator';
export * from './Module';
export * from './ModuleLibrary';
export * from './Peripherals';
6 changes: 6 additions & 0 deletions navigator/CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.2] - 2024-11-22

### Added

- Export of `sML` utility is now exposed for User Agent sniffing

## [1.3.1] - 2024-11-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion navigator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readium/navigator",
"version": "1.3.1",
"version": "1.3.2",
"type": "module",
"description": "Next generation SDK for publications in Web Apps",
"author": "readium",
Expand Down
1 change: 1 addition & 0 deletions navigator/src/helpers/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './sML';
3 changes: 2 additions & 1 deletion navigator/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './Navigator';
export * from './epub';
export * from './audio';
export * from './audio';
export * from './helpers';
12 changes: 12 additions & 0 deletions shared/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.1] - 2024-11-22

### Fixed

- Export of `Resource` and `services` folder was missing in build, preventing usage of `Resource`, `ContentTokenizer`, `Tokenizer`, `Iterator`, etc.
2 changes: 1 addition & 1 deletion shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readium/shared",
"version": "1.2.0",
"version": "1.2.1",
"type": "module",
"description": "Shared models to be used across other Readium projects and implementations in Typescript",
"author": "readium",
Expand Down
3 changes: 2 additions & 1 deletion shared/src/fetcher/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './Fetcher';
export * from "./HttpFetcher";
export * from './HttpFetcher';
export * from './Resource';
1 change: 1 addition & 0 deletions shared/src/publication/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export * from './epub';
export * from './html';
export * from './opds';
export * from './presentation';
export * from './services';
export * from './BelongsTo';
export * from './Contributor';
export * from './Link';
Expand Down

0 comments on commit de236b5

Please sign in to comment.