Skip to content

Commit 77a2b25

Browse files
Merge pull request #2 from privatenumber/develop
2 parents 2d377db + 272504e commit 77a2b25

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,19 @@ Auto-resolve bare specifiers in [SystemJS](https://github.com/systemjs/systemjs)
1616
```
1717

1818
```js
19-
const _ = await System.import('lodash'); // ⬅ Won't work unless the import map above is defined
19+
// Won't work unless the import map above is defined
20+
const _ = await System.import('lodash');
2021
```
2122

22-
**After**
23+
**After<sup>✨</sup>**
2324

2425
```js
25-
const _ = await System.import('lodash'); // ⬅ Automatically resolved without import map
26+
// Automatically resolved without import map!
27+
const _ = await System.import('lodash');
2628
```
2729

2830
## 🙋‍♂️ Why?
29-
- **⚡️ Simplify SystemJS setup** Zero config setup to seemlessly resolve arbitrary bare specifiers!
31+
- **⚡️ Simplify SystemJS setup** Zero config setup to seamlessly resolve arbitrary bare specifiers!
3032
- **🔥 Import map fallback** Only resolves specifiers that aren't defined in your [import map](https://github.com/systemjs/systemjs/blob/master/docs/import-maps.md)!
3133
- **🐥 Tiny** Only `255B`!
3234

0 commit comments

Comments
 (0)