oblador / react-native-esbuild

Fast bundler and dev server for react-native using esbuild
MIT License
595 stars 11 forks source link

Fix priority order of platform specific extensions #2

Closed oblador closed 2 years ago

oblador commented 2 years ago

In some rare edge cases when mixing extensions it could happen that this bundler would pick the wrong file.

Current order (wrong)

file.ios.ts
file.ts
file.ios.js
file.js

Proposed order (this pr)

file.ios.ts
file.ios.js
file.ts
file.js