Skip to content

Commit fdc8576

Browse files
authored
fix(types): conflicts with peer types (#852)
With our recent changes in bundling, there's a new problem with the framework-specific SDKs (react + nestjs). These have peers, and the external function was bundling those peers as well, which can cause tsc errors due to conflicts. This change prevents us from bundling any peers (which is what we want, so we avoid conflicts with the consumers installed peers). This has no runtime impact, and there was no changes to core, web, or server SDK dists. See image below for the difference in the react SDK (notice peers are now IMPORTED): ![image](https://github.com/open-feature/js-sdk/assets/25272906/0bdd16d6-d1c0-4118-9bf4-93659c164090) --------- Signed-off-by: Todd Baert <[email protected]>
1 parent 0a12a5e commit fdc8576

File tree

3 files changed

+39
-7
lines changed

3 files changed

+39
-7
lines changed

packages/nest/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,19 @@ Capabilities include:
6161
npm install --save @openfeature/nestjs-sdk
6262
```
6363

64+
#### npm
65+
66+
```sh
67+
npm install --save @openfeature/nestjs-sdk
68+
```
69+
70+
#### yarn
71+
72+
```sh
73+
# yarn requires manual installation of the peer dependencies (see below)
74+
yarn add @openfeature/nestjs-sdk @openfeature/server-sdk @openfeature/core
75+
```
76+
6477
#### Required peer dependencies
6578

6679
The following list contains the peer dependencies of `@openfeature/nestjs-sdk` with its expected and compatible versions:

packages/react/README.md

+21-5
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,19 @@ The OpenFeature React SDK adds React-specific functionality to the [OpenFeature
4242

4343
In addition to the feature provided by the [web sdk](https://openfeature.dev/docs/reference/technologies/client/web), capabilities include:
4444

45-
- [Multiple Providers and domains](#multiple-providers-and-domains)
46-
- [Re-rendering with Context Changes](#re-rendering-with-context-changes)
47-
- [Re-rendering with Flag Configuration Changes](#re-rendering-with-flag-configuration-changes)
48-
- [Suspense Support](#suspense-support)
45+
- [Overview](#overview)
46+
- [🚀 Quick start](#-quick-start)
47+
- [Requirements](#requirements)
48+
- [Install](#install)
49+
- [npm](#npm)
50+
- [yarn](#yarn)
51+
- [Required peer dependencies](#required-peer-dependencies)
52+
- [Usage](#usage)
53+
- [Multiple Providers and Domains](#multiple-providers-and-domains)
54+
- [Re-rendering with Context Changes](#re-rendering-with-context-changes)
55+
- [Re-rendering with Flag Configuration Changes](#re-rendering-with-flag-configuration-changes)
56+
- [Suspense Support](#suspense-support)
57+
- [Resources](#resources)
4958

5059
## 🚀 Quick start
5160

@@ -62,11 +71,18 @@ In addition to the feature provided by the [web sdk](https://openfeature.dev/doc
6271
npm install --save @openfeature/react-sdk
6372
```
6473

74+
#### yarn
75+
76+
```sh
77+
# yarn requires manual installation of the peer dependencies (see below)
78+
yarn add @openfeature/react-sdk @openfeature/web-sdk @openfeature/core
79+
```
80+
6581
#### Required peer dependencies
6682

6783
The following list contains the peer dependencies of `@openfeature/react-sdk` with its expected and compatible versions:
6884

69-
* `@openfeature/web-sdk`: >=0.4.10
85+
* `@openfeature/web-sdk`: >=0.4.14
7086
* `react`: >=16.8.0
7187

7288
### Usage

rollup.config.mjs

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ export default {
1111
},
1212
// function indicating which deps should be considered external: external deps will NOT have their types bundled
1313
external: (id) => {
14-
// bundle everything but '@openfeature/core', which is a peer
15-
return id === '@openfeature/core';
14+
// bundle everything except peer deps (@openfeature/*, @nest/*, react, rxjs)
15+
return id.startsWith('@openfeature') ||
16+
id.startsWith('@nest') ||
17+
id === 'rxjs' ||
18+
id === 'react';
1619
},
1720
plugins: [
1821
// use the rollup override tsconfig (applies equivalent in each sub-packages as well)

0 commit comments

Comments
 (0)