-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: node 10 resolution should now work
- Loading branch information
1 parent
844b7ba
commit 800b911
Showing
5 changed files
with
105 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "node-vibrant-browser", | ||
"version": "4.0.0", | ||
"description": "", | ||
"type": "module", | ||
"module": "./../dist/esm/browser.js", | ||
"main": "./../dist/cjs/browser.cjs", | ||
"types": "./../dist/cjs/browser.d.cts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"types": "./../dist/esm/browser.d.ts", | ||
"default": "./../dist/esm/browser.js" | ||
}, | ||
"require": { | ||
"types": "./../dist/cjs/browser.d.cts", | ||
"default": "./../dist/cjs/browser.cjs" | ||
} | ||
} | ||
}, | ||
"author": "crutchcorn", | ||
"license": "MIT", | ||
"sideEffects": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "node-vibrant-node", | ||
"version": "4.0.0", | ||
"description": "", | ||
"type": "module", | ||
"module": "./../dist/esm/node.js", | ||
"main": "./../dist/cjs/node.cjs", | ||
"types": "./../dist/cjs/node.d.cts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"types": "./../dist/esm/node.d.ts", | ||
"default": "./../dist/esm/node.js" | ||
}, | ||
"require": { | ||
"types": "./../dist/cjs/node.d.cts", | ||
"default": "./../dist/cjs/node.cjs" | ||
} | ||
} | ||
}, | ||
"author": "crutchcorn", | ||
"license": "MIT", | ||
"sideEffects": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,10 @@ | |
"sideEffects": true, | ||
"files": [ | ||
"dist", | ||
"src" | ||
"src", | ||
"browser", | ||
"node", | ||
"worker", | ||
"worker.worker" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "node-vibrant-worker-worker", | ||
"version": "4.0.0", | ||
"description": "", | ||
"type": "module", | ||
"module": "./../dist/esm/worker.worker.js", | ||
"main": "./../dist/cjs/worker.worker.cjs", | ||
"types": "./../dist/cjs/worker.worker.d.cts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"types": "./../dist/esm/worker.worker.d.ts", | ||
"default": "./../dist/esm/worker.worker.js" | ||
}, | ||
"require": { | ||
"types": "./../dist/cjs/worker.worker.d.cts", | ||
"default": "./../dist/cjs/worker.worker.cjs" | ||
} | ||
} | ||
}, | ||
"author": "crutchcorn", | ||
"license": "MIT", | ||
"sideEffects": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "node-vibrant-worker", | ||
"version": "4.0.0", | ||
"description": "", | ||
"type": "module", | ||
"module": "./../dist/esm/worker.js", | ||
"main": "./../dist/cjs/worker.cjs", | ||
"types": "./../dist/cjs/worker.d.cts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"types": "./../dist/esm/worker.d.ts", | ||
"default": "./../dist/esm/worker.js" | ||
}, | ||
"require": { | ||
"types": "./../dist/cjs/worker.d.cts", | ||
"default": "./../dist/cjs/worker.cjs" | ||
} | ||
} | ||
}, | ||
"author": "crutchcorn", | ||
"license": "MIT", | ||
"sideEffects": true | ||
} |