Skip to content

Commit 32071ce

Browse files
authored
Update and rename DESIGN.md to PACKAGING_FOR_THE_BROWSER.md
1 parent 51f656f commit 32071ce

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

DESIGN.md renamed to PACKAGING_FOR_THE_BROWSER.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## manifest
2+
3+
```json
4+
{
5+
"sideEffects": false,
6+
"type": "module",
7+
"main": "index.js",
8+
"types": "index.d.ts",
9+
"browser": {
10+
"./lib/lib1.js": "./lib/lib1.browser.js",
11+
"./lib/lib2.js": "./lib/lib2.browser.js",
12+
"./lib/lib3.js": "./lib/lib3.browser.js"
13+
},
14+
"react-native": {
15+
"./lib/lib1.js": "./lib/lib1.browser.js",
16+
"./lib/lib2.js": "./lib/lib2.browser.js",
17+
"./lib/lib3.js": "./lib/lib3.browser.js"
18+
},
19+
"files": [
20+
"lib/",
21+
"index.d.ts",
22+
"index.js"
23+
]
24+
}
25+
```
26+
127
## types
228

329

@@ -49,4 +75,4 @@ declare class EventEmitterWrapper implements EventEmitter {
4975
listenerCount(type: string | symbol): number;
5076
}
5177
export { EventEmitterWrapper };
52-
```
78+
```

0 commit comments

Comments
 (0)