Skip to content

Commit

Permalink
Fixes #6. Wrong value for "main" field in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jherax committed Mar 1, 2018
1 parent cae6aa1 commit a7281c0
Show file tree
Hide file tree
Showing 10 changed files with 477 additions and 12 deletions.
14 changes: 13 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"presets": [
"env"
["env", {
"targets": {
"browsers": [
"last 3 Chrome versions",
"last 3 Firefox versions",
"last 3 Opera versions",
"Explorer >= 10",
"Safari >= 8",
"iOS >= 8",
"Android >= 4.4"
]
}
}]
],
"plugins": [
"babel-plugin-add-module-exports"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ the internal mapping, honoring the user mapping first:
<script src="https://unpkg.com/array-sort-by/dist/sort-by-full.min.js"></script>

<!-- from rawgit.com -->
<script src="https://cdn.rawgit.com/jherax/array-sort-by/1.2.0/dist/sort-by.min.js"></script>
<script src="https://cdn.rawgit.com/jherax/array-sort-by/1.2.1/dist/sort-by.min.js"></script>
<!-- from rawgit.com, including polyfills -->
<script src="https://cdn.rawgit.com/jherax/array-sort-by/1.2.0/dist/sort-by-full.min.js"></script>
<script src="https://cdn.rawgit.com/jherax/array-sort-by/1.2.1/dist/sort-by-full.min.js"></script>
```

In the above case, the function [`sortBy`](#examples) is included as
Expand Down
4 changes: 2 additions & 2 deletions dist/sort-by-full.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sort-by-full.min.map

Large diffs are not rendered by default.

Loading

0 comments on commit a7281c0

Please sign in to comment.