Skip to content

Commit 722fa59

Browse files
authored
Merge pull request #487 from Concordium/bugfix/missing-plt-umd
Add missing PLT functionality to minified UMD.
2 parents 8956e1a + 66693af commit 722fa59

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/sdk/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Fixed
6+
7+
- Add PLT functionality to UMD releases.
8+
59
## 10.0.1
610

711
### Fixed

packages/sdk/webpack.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
88

99
function configFor(target: 'web' | 'node' | 'react-native'): webpack.Configuration {
1010
const t = target === 'react-native' ? 'web' : target;
11-
const entry = resolve(__dirname, './src/index.ts');
11+
const entry = [resolve(__dirname, './src/index.ts'), resolve(__dirname, './src/pub/plt.ts')];
1212

1313
const config: webpack.Configuration = {
1414
mode: 'production',

0 commit comments

Comments
 (0)