conventional-changelog-storm-software 0.3.179 → 0.3.180
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/dist/index.cjs +7 -3
- package/dist/index.js +7 -3
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -544,9 +544,13 @@ ${message.map(
|
|
|
544
544
|
depth2 + 1
|
|
545
545
|
)}`
|
|
546
546
|
).join("\n")}` : typeof message === "object" ? `
|
|
547
|
-
${Object.keys(message).filter(
|
|
547
|
+
${Object.keys(message).filter(
|
|
548
|
+
(key) => !skip.map((k2) => k2.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
549
|
+
).sort(sort ? (a3, b2) => a3.localeCompare(b2) : void 0).map(
|
|
548
550
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
549
|
-
(key2) => !skip.includes(
|
|
551
|
+
(key2) => !skip.map((k2) => k2.toLowerCase()).includes(
|
|
552
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
553
|
+
)
|
|
550
554
|
).length === 0 ? "{}" : formatLogMessage(
|
|
551
555
|
message[key],
|
|
552
556
|
{ prefix: `${prefix}--`, skip, sort },
|
|
@@ -1559,7 +1563,7 @@ ${formatLogMessage(config)}`,
|
|
|
1559
1563
|
return config;
|
|
1560
1564
|
};
|
|
1561
1565
|
|
|
1562
|
-
// ../config-tools/dist/chunk-
|
|
1566
|
+
// ../config-tools/dist/chunk-EBVZQPBC.js
|
|
1563
1567
|
function getConfig(workspaceRoot, skipLogs = false) {
|
|
1564
1568
|
return loadStormWorkspaceConfig(workspaceRoot, skipLogs);
|
|
1565
1569
|
}
|
package/dist/index.js
CHANGED
|
@@ -517,9 +517,13 @@ ${message.map(
|
|
|
517
517
|
depth2 + 1
|
|
518
518
|
)}`
|
|
519
519
|
).join("\n")}` : typeof message === "object" ? `
|
|
520
|
-
${Object.keys(message).filter(
|
|
520
|
+
${Object.keys(message).filter(
|
|
521
|
+
(key) => !skip.map((k2) => k2.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
522
|
+
).sort(sort ? (a3, b2) => a3.localeCompare(b2) : void 0).map(
|
|
521
523
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
522
|
-
(key2) => !skip.includes(
|
|
524
|
+
(key2) => !skip.map((k2) => k2.toLowerCase()).includes(
|
|
525
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
526
|
+
)
|
|
523
527
|
).length === 0 ? "{}" : formatLogMessage(
|
|
524
528
|
message[key],
|
|
525
529
|
{ prefix: `${prefix}--`, skip, sort },
|
|
@@ -1532,7 +1536,7 @@ ${formatLogMessage(config)}`,
|
|
|
1532
1536
|
return config;
|
|
1533
1537
|
};
|
|
1534
1538
|
|
|
1535
|
-
// ../config-tools/dist/chunk-
|
|
1539
|
+
// ../config-tools/dist/chunk-EBVZQPBC.js
|
|
1536
1540
|
function getConfig(workspaceRoot, skipLogs = false) {
|
|
1537
1541
|
return loadStormWorkspaceConfig(workspaceRoot, skipLogs);
|
|
1538
1542
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conventional-changelog-storm-software",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.180",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "This package contains the shared conventional-changelog configuration used in Storm Software projects.",
|
|
6
6
|
"repository": {
|
|
@@ -213,8 +213,8 @@
|
|
|
213
213
|
"storm-software"
|
|
214
214
|
],
|
|
215
215
|
"dependencies": {
|
|
216
|
-
"@storm-software/config": "^1.137.
|
|
217
|
-
"@storm-software/config-tools": "^1.190.
|
|
216
|
+
"@storm-software/config": "^1.137.52",
|
|
217
|
+
"@storm-software/config-tools": "^1.190.20",
|
|
218
218
|
"compare-func": "^2.0.0",
|
|
219
219
|
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
220
220
|
"conventional-changelog-writer": "^8.4.0",
|
|
@@ -228,5 +228,5 @@
|
|
|
228
228
|
},
|
|
229
229
|
"publishConfig": { "access": "public" },
|
|
230
230
|
"sideEffects": false,
|
|
231
|
-
"gitHead": "
|
|
231
|
+
"gitHead": "b1f508805815ee86f76ec6bb122f736ebf447ffc"
|
|
232
232
|
}
|