smartbundle 0.7.0-alpha.0 → 0.7.1

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.
@@ -56,7 +56,8 @@ async function writePackageJson(outDir, parsed, { exportsMap, binsMap }) {
56
56
  bugs: parsed.bugs,
57
57
  sideEffects: parsed.sideEffects,
58
58
  unpkg: parsed.unpkg,
59
- homepage: parsed.homepage
59
+ homepage: parsed.homepage,
60
+ devDependencies: parsed.devDependencies
60
61
  };
61
62
  await fs.writeFile(`${outDir}/package.json`, JSON.stringify(res, null, 2));
62
63
  }
@@ -54,7 +54,8 @@ async function writePackageJson(outDir, parsed, { exportsMap, binsMap }) {
54
54
  bugs: parsed.bugs,
55
55
  sideEffects: parsed.sideEffects,
56
56
  unpkg: parsed.unpkg,
57
- homepage: parsed.homepage
57
+ homepage: parsed.homepage,
58
+ devDependencies: parsed.devDependencies
58
59
  };
59
60
  await writeFile(`${outDir}/package.json`, JSON.stringify(res, null, 2));
60
61
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "smartbundle",
3
3
  "type": "module",
4
- "version": "0.7.0-alpha.0",
4
+ "version": "0.7.1",
5
5
  "bin": {
6
6
  "smartbundle": "__smartbundle__internals__/smartbundle"
7
7
  },
@@ -52,5 +52,14 @@
52
52
  "bugs": {
53
53
  "url": "https://github.com/xavescor/smartbundle/issues"
54
54
  },
55
- "homepage": "https://github.com/xavescor/smartbundle"
55
+ "homepage": "https://github.com/xavescor/smartbundle",
56
+ "devDependencies": {
57
+ "@types/node": "^20.14.11",
58
+ "@types/yargs": "^17.0.33",
59
+ "prettier": "^3.3.3",
60
+ "typescript": "^5.6.3",
61
+ "vitest": "^2.1.3",
62
+ "vitest-directory-snapshot": "^0.2.2",
63
+ "zx": "^8.1.9"
64
+ }
56
65
  }