@expo/serve-sim 0.1.40 → 0.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +12 -0
- package/README.md +6 -0
- package/dist/middleware.js +46 -46
- package/dist/native/serve-sim-native.node +0 -0
- package/dist/serve-sim.js +81 -80
- package/package.json +2 -1
- package/src/middleware.ts +17 -2
- package/src/native.ts +11 -0
package/NOTICE
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
serve-sim attribution notice
|
|
2
|
+
|
|
3
|
+
This distribution includes software from the original serve-sim project,
|
|
4
|
+
created and open-sourced by Evan Bacon:
|
|
5
|
+
|
|
6
|
+
https://github.com/EvanBacon/serve-sim
|
|
7
|
+
|
|
8
|
+
Original work copyright 2026 Evan Bacon.
|
|
9
|
+
|
|
10
|
+
The original work is licensed under the Apache License, Version 2.0. This
|
|
11
|
+
fork contains modifications by Expo and other contributors. See the LICENSE
|
|
12
|
+
file for the applicable terms and the Git history for modification details.
|
package/README.md
CHANGED
|
@@ -288,6 +288,12 @@ packages/serve-sim/Sources/SimNative/build.sh # native addon only
|
|
|
288
288
|
bun run --filter serve-sim dev # watch mode
|
|
289
289
|
```
|
|
290
290
|
|
|
291
|
+
## Origin and attribution
|
|
292
|
+
|
|
293
|
+
`serve-sim` was created and open-sourced by [Evan Bacon](https://github.com/EvanBacon) in the [original serve-sim project](https://github.com/EvanBacon/serve-sim). This repository is an Expo-maintained fork. We are grateful to Evan for creating the project and making it available to the community.
|
|
294
|
+
|
|
295
|
+
See [NOTICE](NOTICE) for attribution details.
|
|
296
|
+
|
|
291
297
|
## License
|
|
292
298
|
|
|
293
299
|
Apache-2.0
|