smartbundle 0.0.1 → 0.0.2

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.
@@ -128,7 +128,7 @@ async function run(args) {
128
128
  }
129
129
  for (const path of exportPath) {
130
130
  setExports(exportsMap, path, (entry) => {
131
- entry.mjs = "./" + el.fileName;
131
+ entry.mjs = el.fileName;
132
132
  return entry;
133
133
  });
134
134
  }
@@ -142,7 +142,7 @@ async function run(args) {
142
142
  }
143
143
  for (const path of exportPath2) {
144
144
  setExports(exportsMap, path, (entry) => {
145
- entry.mdts = "./" + el.fileName;
145
+ entry.mdts = el.fileName;
146
146
  return entry;
147
147
  });
148
148
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "smartbundle",
3
3
  "type": "module",
4
- "version": "0.0.1",
5
- "bin": "./src/bin.mjs",
4
+ "version": "0.0.2",
5
+ "bin": "src/bin.mjs",
6
6
  "description": "",
7
7
  "exports": {},
8
8
  "dependencies": {