@savvy-web/tsdown-plugins 2.1.3 → 2.1.4

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.
@@ -1,6 +1,6 @@
1
1
  import { createEntryName } from "../entry/extract.js";
2
2
  import { ambientOutName, classifyDtsExport, mixedDtsExportError } from "../entry/ambient-dts.js";
3
- import sortPackageJson from "sort-package-json";
3
+ import { PackageJsonFormat } from "@effected/package-json";
4
4
 
5
5
  //#region src/manifest/transform.ts
6
6
  const isDualKey = (dual, exportKey) => typeof dual === "boolean" ? dual : dual.has(exportKey);
@@ -209,7 +209,7 @@ function transformManifest(pkg, options = {}) {
209
209
  if (result.bin) result.bin = transformBin(result.bin);
210
210
  if (options.transform) result = options.transform(result);
211
211
  if (result.bin) result.bin = normalizeBinPaths(result.bin);
212
- return sortPackageJson(result);
212
+ return PackageJsonFormat.sortValue(result);
213
213
  }
214
214
 
215
215
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/tsdown-plugins",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "private": false,
5
5
  "description": "Interface-only tsdown/rolldown plugin pack powering @savvy-web/bundler",
6
6
  "homepage": "https://github.com/savvy-web/systems/tree/main/packages/tsdown-plugins",
@@ -31,15 +31,15 @@
31
31
  "dependencies": {
32
32
  "@changesets/get-release-plan": "^5.0.0-next.7",
33
33
  "@effect/platform-node": "4.0.0-beta.99",
34
- "@effected/npm": "^0.2.1",
35
- "@effected/tsconfig-json": "^0.2.4",
36
- "@effected/workspaces": "^0.4.1",
34
+ "@effected/npm": "^0.2.3",
35
+ "@effected/package-json": "^0.4.1",
36
+ "@effected/tsconfig-json": "^0.2.7",
37
+ "@effected/workspaces": "^0.5.2",
37
38
  "@microsoft/api-extractor": "^7.58.11",
38
39
  "@microsoft/tsdoc": "^0.16.0",
39
40
  "@microsoft/tsdoc-config": "^0.18.1",
40
41
  "effect": "4.0.0-beta.99",
41
42
  "picocolors": "^1.1.1",
42
- "sort-package-json": "^4.0.0",
43
43
  "std-env": "^4.2.0",
44
44
  "tsdown": "^0.22.9",
45
45
  "typescript": "^6.0.3"