Skip to content

Commit 2ef43fa

Browse files
Fix #16: add 'module' to package.json, manually fix dependabot alerts (#17)
Co-authored-by: Denis Tokarev <[email protected]>
1 parent f6397ea commit 2ef43fa

File tree

3 files changed

+44
-44
lines changed

3 files changed

+44
-44
lines changed

package-lock.json

Lines changed: 41 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "async-wait-until",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"description": "Waits for a given predicate callback to return a truthy value and resolves",
55
"main": "dist/index.js",
6+
"module": "dist/index.esm.js",
67
"types": "dist/index.d.ts",
78
"scripts": {
89
"spellcheck": "cross-env NODE_ENV=production write-good *.md",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default {
3939
},
4040
{
4141
...OUTPUT_CONFIG,
42-
file: 'dist/es.js',
42+
file: 'dist/index.esm.js',
4343
format: 'es',
4444
},
4545
{

0 commit comments

Comments
 (0)