@savvy-web/tsdown-plugins 2.1.2 → 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.
- package/manifest/transform.js +2 -2
- package/package.json +8 -8
- package/tsdoc-metadata.json +1 -1
package/manifest/transform.js
CHANGED
|
@@ -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
|
|
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
|
|
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
|
+
"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",
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@changesets/get-release-plan": "^5.0.0-next.7",
|
|
33
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
34
|
-
"@effected/npm": "^0.2.
|
|
35
|
-
"@effected/
|
|
36
|
-
"@effected/
|
|
37
|
-
"@
|
|
33
|
+
"@effect/platform-node": "4.0.0-beta.99",
|
|
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",
|
|
38
|
+
"@microsoft/api-extractor": "^7.58.11",
|
|
38
39
|
"@microsoft/tsdoc": "^0.16.0",
|
|
39
40
|
"@microsoft/tsdoc-config": "^0.18.1",
|
|
40
|
-
"effect": "4.0.0-beta.
|
|
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"
|