Skip to content

Commit

Permalink
Merge pull request #38 from iambumblehead/use-minifier-friendly-export
Browse files Browse the repository at this point in the history
use minifier-friendly export
  • Loading branch information
iambumblehead authored Sep 15, 2022
2 parents e7f79c7 + 680c620 commit 4f6a8f9
Show file tree
Hide file tree
Showing 4 changed files with 404 additions and 417 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@
"const": 3
}
}],
"camelcase": [2, {"properties": "never", "allow": ["node_modules"] }],
"camelcase": [2, {"properties": "never", "allow": [
"node_module",
"first_parent"
] }],
"no-underscore-dangle": 0,
"func-names": [2, "never"],
"newline-per-chained-call": 0,
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# changelog

* 1.0.1 _Sep.15.2022_
* reduce size of minified resolvewithplus.js file [by 50%](https://github.com/iambumblehead/resolvewithplus/pull/38)
* 1.0.0 _Aug.28.2022_
* return paths in fileurl format, like import.meta.resolve
* added tests around export sugar esm patterns
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "resolvewithplus",
"version": "1.0.0",
"version": "1.0.1",
"engines" : {
"node" : ">=12.16.0"
},
Expand Down
Loading

0 comments on commit 4f6a8f9

Please sign in to comment.