We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40eeff2 commit d2a701eCopy full SHA for d2a701e
package.json
@@ -3,8 +3,14 @@
3
"description": "Promise Orchestrator: Process promise-based tasks in series and parallel, controlling concurrency and throttling",
4
"version": "2.0.1",
5
"type": "module",
6
- "exports": "./index.js",
7
- "browser": "./dist/porch-browser.min.js",
+ "exports": {
+ ".": {
8
+ "import": "./dist/porch.mjs",
9
+ "require": "./dist/porch.cjs"
10
+ }
11
+ },
12
+ "main": "./dist/porch.cjs",
13
+ "browser": "./dist/porch.umd.cjs",
14
"license": "MIT",
15
"repository": {
16
"type": "git",
0 commit comments