@siddharatha/adapter-node-rolldown 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +0 -9
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -66,15 +66,6 @@ export default function (opts = {}) {
66
66
 
67
67
  const pkg = JSON.parse(readFileSync('package.json', 'utf8'));
68
68
 
69
- // determine external patterns for bundling
70
- let externalPatterns;
71
- if (bundleAll) {
72
- externalPatterns = [];
73
- } else if (external) {
74
- externalPatterns = typeof external === 'function' ? external(pkg) : external;
75
- } else {
76
- externalPatterns = Object.keys(pkg.dependencies || {});
77
- }
78
69
 
79
70
  /** @type {Record<string, string>} */
80
71
  const input = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siddharatha/adapter-node-rolldown",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Just replacing @sveltejs/adapter-node with rolldown",
5
5
  "type": "module",
6
6
  "exports": {