@savvy-web/silk 0.2.1 → 0.3.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.
- package/cjs/changesets/changelog/index.cjs +36 -1
- package/cjs/changesets/changelog/index.d.cts +3 -12
- package/cjs/changesets/index.cjs +34 -0
- package/cjs/changesets/markdownlint/index.cjs +34 -0
- package/cjs/changesets/remark/index.cjs +34 -0
- package/cjs/commitlint/formatter/index.cjs +34 -0
- package/cjs/commitlint/index.cjs +34 -0
- package/cjs/commitlint/prompt/index.cjs +34 -0
- package/cjs/commitlint/static/index.cjs +34 -0
- package/cjs/lint/index.cjs +34 -0
- package/esm/792.js +34 -0
- package/esm/changesets/changelog/index.d.ts +3 -12
- package/esm/changesets/changelog/index.js +2 -1
- package/package.json +4 -4
|
@@ -54051,6 +54051,36 @@ var __webpack_modules__ = {
|
|
|
54051
54051
|
'npm',
|
|
54052
54052
|
'yarn'
|
|
54053
54053
|
]);
|
|
54054
|
+
const wireitScriptProperties = [
|
|
54055
|
+
'command',
|
|
54056
|
+
'dependencies',
|
|
54057
|
+
'files',
|
|
54058
|
+
'output'
|
|
54059
|
+
];
|
|
54060
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54061
|
+
sortObjectBy(wireitScriptProperties),
|
|
54062
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54063
|
+
"script",
|
|
54064
|
+
'cascade'
|
|
54065
|
+
])))),
|
|
54066
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54067
|
+
key,
|
|
54068
|
+
sortObjectBy([
|
|
54069
|
+
'external',
|
|
54070
|
+
'default'
|
|
54071
|
+
])(value1)
|
|
54072
|
+
]))))),
|
|
54073
|
+
overProperty('service', sort_package_json_pipe([
|
|
54074
|
+
sortObjectBy([
|
|
54075
|
+
'readyWhen'
|
|
54076
|
+
]),
|
|
54077
|
+
overProperty('readyWhen', sortObject)
|
|
54078
|
+
]))
|
|
54079
|
+
]);
|
|
54080
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54081
|
+
name,
|
|
54082
|
+
sortWireitScript(config)
|
|
54083
|
+
]))));
|
|
54054
54084
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54055
54085
|
'name',
|
|
54056
54086
|
'version',
|
|
@@ -54338,6 +54368,10 @@ var __webpack_modules__ = {
|
|
|
54338
54368
|
key: 'betterScripts',
|
|
54339
54369
|
over: sortScripts
|
|
54340
54370
|
},
|
|
54371
|
+
{
|
|
54372
|
+
key: 'wireit',
|
|
54373
|
+
over: sortWireit
|
|
54374
|
+
},
|
|
54341
54375
|
{
|
|
54342
54376
|
key: 'l10n'
|
|
54343
54377
|
},
|
|
@@ -77887,7 +77921,8 @@ Default "index" lookups for the main are deprecated for ES modules.`, "Deprecati
|
|
|
77887
77921
|
clearCache
|
|
77888
77922
|
};
|
|
77889
77923
|
}));
|
|
77890
|
-
const
|
|
77924
|
+
const changelog_changelogFunctions = changesets_namespaceObject.changelogFunctions;
|
|
77925
|
+
const src_changesets_changelog = changelog_changelogFunctions;
|
|
77891
77926
|
},
|
|
77892
77927
|
buffer (module) {
|
|
77893
77928
|
"use strict";
|
|
@@ -8,18 +8,9 @@
|
|
|
8
8
|
* @packageDocumentation
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
|
-
import {
|
|
11
|
+
import { Changesets } from '@savvy-web/silk-effects';
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*
|
|
16
|
-
* Drop-in replacement for \@savvy-web/changesets/changelog.
|
|
17
|
-
* The default export is the ChangelogFunctions object consumed by the
|
|
18
|
-
* Changesets CLI via the changelog field in .changeset/config.json.
|
|
19
|
-
*
|
|
20
|
-
* @packageDocumentation
|
|
21
|
-
*/
|
|
22
|
-
declare const _default: ChangelogFunctions;
|
|
23
|
-
export default _default;
|
|
13
|
+
declare const changelogFunctions: typeof Changesets.changelogFunctions;
|
|
14
|
+
export default changelogFunctions;
|
|
24
15
|
|
|
25
16
|
export { }
|
package/cjs/changesets/index.cjs
CHANGED
|
@@ -54055,6 +54055,36 @@ var __webpack_modules__ = {
|
|
|
54055
54055
|
'npm',
|
|
54056
54056
|
'yarn'
|
|
54057
54057
|
]);
|
|
54058
|
+
const wireitScriptProperties = [
|
|
54059
|
+
'command',
|
|
54060
|
+
'dependencies',
|
|
54061
|
+
'files',
|
|
54062
|
+
'output'
|
|
54063
|
+
];
|
|
54064
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54065
|
+
sortObjectBy(wireitScriptProperties),
|
|
54066
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54067
|
+
"script",
|
|
54068
|
+
'cascade'
|
|
54069
|
+
])))),
|
|
54070
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54071
|
+
key,
|
|
54072
|
+
sortObjectBy([
|
|
54073
|
+
'external',
|
|
54074
|
+
'default'
|
|
54075
|
+
])(value1)
|
|
54076
|
+
]))))),
|
|
54077
|
+
overProperty('service', sort_package_json_pipe([
|
|
54078
|
+
sortObjectBy([
|
|
54079
|
+
'readyWhen'
|
|
54080
|
+
]),
|
|
54081
|
+
overProperty('readyWhen', sortObject)
|
|
54082
|
+
]))
|
|
54083
|
+
]);
|
|
54084
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54085
|
+
name,
|
|
54086
|
+
sortWireitScript(config)
|
|
54087
|
+
]))));
|
|
54058
54088
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54059
54089
|
'name',
|
|
54060
54090
|
'version',
|
|
@@ -54342,6 +54372,10 @@ var __webpack_modules__ = {
|
|
|
54342
54372
|
key: 'betterScripts',
|
|
54343
54373
|
over: sortScripts
|
|
54344
54374
|
},
|
|
54375
|
+
{
|
|
54376
|
+
key: 'wireit',
|
|
54377
|
+
over: sortWireit
|
|
54378
|
+
},
|
|
54345
54379
|
{
|
|
54346
54380
|
key: 'l10n'
|
|
54347
54381
|
},
|
|
@@ -54056,6 +54056,36 @@ var __webpack_modules__ = {
|
|
|
54056
54056
|
'npm',
|
|
54057
54057
|
'yarn'
|
|
54058
54058
|
]);
|
|
54059
|
+
const wireitScriptProperties = [
|
|
54060
|
+
'command',
|
|
54061
|
+
'dependencies',
|
|
54062
|
+
'files',
|
|
54063
|
+
'output'
|
|
54064
|
+
];
|
|
54065
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54066
|
+
sortObjectBy(wireitScriptProperties),
|
|
54067
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54068
|
+
"script",
|
|
54069
|
+
'cascade'
|
|
54070
|
+
])))),
|
|
54071
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54072
|
+
key,
|
|
54073
|
+
sortObjectBy([
|
|
54074
|
+
'external',
|
|
54075
|
+
'default'
|
|
54076
|
+
])(value1)
|
|
54077
|
+
]))))),
|
|
54078
|
+
overProperty('service', sort_package_json_pipe([
|
|
54079
|
+
sortObjectBy([
|
|
54080
|
+
'readyWhen'
|
|
54081
|
+
]),
|
|
54082
|
+
overProperty('readyWhen', sortObject)
|
|
54083
|
+
]))
|
|
54084
|
+
]);
|
|
54085
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54086
|
+
name,
|
|
54087
|
+
sortWireitScript(config)
|
|
54088
|
+
]))));
|
|
54059
54089
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54060
54090
|
'name',
|
|
54061
54091
|
'version',
|
|
@@ -54343,6 +54373,10 @@ var __webpack_modules__ = {
|
|
|
54343
54373
|
key: 'betterScripts',
|
|
54344
54374
|
over: sortScripts
|
|
54345
54375
|
},
|
|
54376
|
+
{
|
|
54377
|
+
key: 'wireit',
|
|
54378
|
+
over: sortWireit
|
|
54379
|
+
},
|
|
54346
54380
|
{
|
|
54347
54381
|
key: 'l10n'
|
|
54348
54382
|
},
|
|
@@ -54064,6 +54064,36 @@ var __webpack_modules__ = {
|
|
|
54064
54064
|
'npm',
|
|
54065
54065
|
'yarn'
|
|
54066
54066
|
]);
|
|
54067
|
+
const wireitScriptProperties = [
|
|
54068
|
+
'command',
|
|
54069
|
+
'dependencies',
|
|
54070
|
+
'files',
|
|
54071
|
+
'output'
|
|
54072
|
+
];
|
|
54073
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54074
|
+
sortObjectBy(wireitScriptProperties),
|
|
54075
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54076
|
+
"script",
|
|
54077
|
+
'cascade'
|
|
54078
|
+
])))),
|
|
54079
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54080
|
+
key,
|
|
54081
|
+
sortObjectBy([
|
|
54082
|
+
'external',
|
|
54083
|
+
'default'
|
|
54084
|
+
])(value1)
|
|
54085
|
+
]))))),
|
|
54086
|
+
overProperty('service', sort_package_json_pipe([
|
|
54087
|
+
sortObjectBy([
|
|
54088
|
+
'readyWhen'
|
|
54089
|
+
]),
|
|
54090
|
+
overProperty('readyWhen', sortObject)
|
|
54091
|
+
]))
|
|
54092
|
+
]);
|
|
54093
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54094
|
+
name,
|
|
54095
|
+
sortWireitScript(config)
|
|
54096
|
+
]))));
|
|
54067
54097
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54068
54098
|
'name',
|
|
54069
54099
|
'version',
|
|
@@ -54351,6 +54381,10 @@ var __webpack_modules__ = {
|
|
|
54351
54381
|
key: 'betterScripts',
|
|
54352
54382
|
over: sortScripts
|
|
54353
54383
|
},
|
|
54384
|
+
{
|
|
54385
|
+
key: 'wireit',
|
|
54386
|
+
over: sortWireit
|
|
54387
|
+
},
|
|
54354
54388
|
{
|
|
54355
54389
|
key: 'l10n'
|
|
54356
54390
|
},
|
|
@@ -54056,6 +54056,36 @@ var __webpack_modules__ = {
|
|
|
54056
54056
|
'npm',
|
|
54057
54057
|
'yarn'
|
|
54058
54058
|
]);
|
|
54059
|
+
const wireitScriptProperties = [
|
|
54060
|
+
'command',
|
|
54061
|
+
'dependencies',
|
|
54062
|
+
'files',
|
|
54063
|
+
'output'
|
|
54064
|
+
];
|
|
54065
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54066
|
+
sortObjectBy(wireitScriptProperties),
|
|
54067
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54068
|
+
"script",
|
|
54069
|
+
'cascade'
|
|
54070
|
+
])))),
|
|
54071
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54072
|
+
key,
|
|
54073
|
+
sortObjectBy([
|
|
54074
|
+
'external',
|
|
54075
|
+
'default'
|
|
54076
|
+
])(value1)
|
|
54077
|
+
]))))),
|
|
54078
|
+
overProperty('service', sort_package_json_pipe([
|
|
54079
|
+
sortObjectBy([
|
|
54080
|
+
'readyWhen'
|
|
54081
|
+
]),
|
|
54082
|
+
overProperty('readyWhen', sortObject)
|
|
54083
|
+
]))
|
|
54084
|
+
]);
|
|
54085
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54086
|
+
name,
|
|
54087
|
+
sortWireitScript(config)
|
|
54088
|
+
]))));
|
|
54059
54089
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54060
54090
|
'name',
|
|
54061
54091
|
'version',
|
|
@@ -54343,6 +54373,10 @@ var __webpack_modules__ = {
|
|
|
54343
54373
|
key: 'betterScripts',
|
|
54344
54374
|
over: sortScripts
|
|
54345
54375
|
},
|
|
54376
|
+
{
|
|
54377
|
+
key: 'wireit',
|
|
54378
|
+
over: sortWireit
|
|
54379
|
+
},
|
|
54346
54380
|
{
|
|
54347
54381
|
key: 'l10n'
|
|
54348
54382
|
},
|
package/cjs/commitlint/index.cjs
CHANGED
|
@@ -54056,6 +54056,36 @@ var __webpack_modules__ = {
|
|
|
54056
54056
|
'npm',
|
|
54057
54057
|
'yarn'
|
|
54058
54058
|
]);
|
|
54059
|
+
const wireitScriptProperties = [
|
|
54060
|
+
'command',
|
|
54061
|
+
'dependencies',
|
|
54062
|
+
'files',
|
|
54063
|
+
'output'
|
|
54064
|
+
];
|
|
54065
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54066
|
+
sortObjectBy(wireitScriptProperties),
|
|
54067
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54068
|
+
"script",
|
|
54069
|
+
'cascade'
|
|
54070
|
+
])))),
|
|
54071
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54072
|
+
key,
|
|
54073
|
+
sortObjectBy([
|
|
54074
|
+
'external',
|
|
54075
|
+
'default'
|
|
54076
|
+
])(value1)
|
|
54077
|
+
]))))),
|
|
54078
|
+
overProperty('service', sort_package_json_pipe([
|
|
54079
|
+
sortObjectBy([
|
|
54080
|
+
'readyWhen'
|
|
54081
|
+
]),
|
|
54082
|
+
overProperty('readyWhen', sortObject)
|
|
54083
|
+
]))
|
|
54084
|
+
]);
|
|
54085
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54086
|
+
name,
|
|
54087
|
+
sortWireitScript(config)
|
|
54088
|
+
]))));
|
|
54059
54089
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54060
54090
|
'name',
|
|
54061
54091
|
'version',
|
|
@@ -54343,6 +54373,10 @@ var __webpack_modules__ = {
|
|
|
54343
54373
|
key: 'betterScripts',
|
|
54344
54374
|
over: sortScripts
|
|
54345
54375
|
},
|
|
54376
|
+
{
|
|
54377
|
+
key: 'wireit',
|
|
54378
|
+
over: sortWireit
|
|
54379
|
+
},
|
|
54346
54380
|
{
|
|
54347
54381
|
key: 'l10n'
|
|
54348
54382
|
},
|
|
@@ -54060,6 +54060,36 @@ var __webpack_modules__ = {
|
|
|
54060
54060
|
'npm',
|
|
54061
54061
|
'yarn'
|
|
54062
54062
|
]);
|
|
54063
|
+
const wireitScriptProperties = [
|
|
54064
|
+
'command',
|
|
54065
|
+
'dependencies',
|
|
54066
|
+
'files',
|
|
54067
|
+
'output'
|
|
54068
|
+
];
|
|
54069
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54070
|
+
sortObjectBy(wireitScriptProperties),
|
|
54071
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54072
|
+
"script",
|
|
54073
|
+
'cascade'
|
|
54074
|
+
])))),
|
|
54075
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54076
|
+
key,
|
|
54077
|
+
sortObjectBy([
|
|
54078
|
+
'external',
|
|
54079
|
+
'default'
|
|
54080
|
+
])(value1)
|
|
54081
|
+
]))))),
|
|
54082
|
+
overProperty('service', sort_package_json_pipe([
|
|
54083
|
+
sortObjectBy([
|
|
54084
|
+
'readyWhen'
|
|
54085
|
+
]),
|
|
54086
|
+
overProperty('readyWhen', sortObject)
|
|
54087
|
+
]))
|
|
54088
|
+
]);
|
|
54089
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54090
|
+
name,
|
|
54091
|
+
sortWireitScript(config)
|
|
54092
|
+
]))));
|
|
54063
54093
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54064
54094
|
'name',
|
|
54065
54095
|
'version',
|
|
@@ -54347,6 +54377,10 @@ var __webpack_modules__ = {
|
|
|
54347
54377
|
key: 'betterScripts',
|
|
54348
54378
|
over: sortScripts
|
|
54349
54379
|
},
|
|
54380
|
+
{
|
|
54381
|
+
key: 'wireit',
|
|
54382
|
+
over: sortWireit
|
|
54383
|
+
},
|
|
54350
54384
|
{
|
|
54351
54385
|
key: 'l10n'
|
|
54352
54386
|
},
|
|
@@ -54057,6 +54057,36 @@ var __webpack_modules__ = {
|
|
|
54057
54057
|
'npm',
|
|
54058
54058
|
'yarn'
|
|
54059
54059
|
]);
|
|
54060
|
+
const wireitScriptProperties = [
|
|
54061
|
+
'command',
|
|
54062
|
+
'dependencies',
|
|
54063
|
+
'files',
|
|
54064
|
+
'output'
|
|
54065
|
+
];
|
|
54066
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54067
|
+
sortObjectBy(wireitScriptProperties),
|
|
54068
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54069
|
+
"script",
|
|
54070
|
+
'cascade'
|
|
54071
|
+
])))),
|
|
54072
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54073
|
+
key,
|
|
54074
|
+
sortObjectBy([
|
|
54075
|
+
'external',
|
|
54076
|
+
'default'
|
|
54077
|
+
])(value1)
|
|
54078
|
+
]))))),
|
|
54079
|
+
overProperty('service', sort_package_json_pipe([
|
|
54080
|
+
sortObjectBy([
|
|
54081
|
+
'readyWhen'
|
|
54082
|
+
]),
|
|
54083
|
+
overProperty('readyWhen', sortObject)
|
|
54084
|
+
]))
|
|
54085
|
+
]);
|
|
54086
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54087
|
+
name,
|
|
54088
|
+
sortWireitScript(config)
|
|
54089
|
+
]))));
|
|
54060
54090
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54061
54091
|
'name',
|
|
54062
54092
|
'version',
|
|
@@ -54344,6 +54374,10 @@ var __webpack_modules__ = {
|
|
|
54344
54374
|
key: 'betterScripts',
|
|
54345
54375
|
over: sortScripts
|
|
54346
54376
|
},
|
|
54377
|
+
{
|
|
54378
|
+
key: 'wireit',
|
|
54379
|
+
over: sortWireit
|
|
54380
|
+
},
|
|
54347
54381
|
{
|
|
54348
54382
|
key: 'l10n'
|
|
54349
54383
|
},
|
package/cjs/lint/index.cjs
CHANGED
|
@@ -54081,6 +54081,36 @@ var __webpack_modules__ = {
|
|
|
54081
54081
|
'npm',
|
|
54082
54082
|
'yarn'
|
|
54083
54083
|
]);
|
|
54084
|
+
const wireitScriptProperties = [
|
|
54085
|
+
'command',
|
|
54086
|
+
'dependencies',
|
|
54087
|
+
'files',
|
|
54088
|
+
'output'
|
|
54089
|
+
];
|
|
54090
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
54091
|
+
sortObjectBy(wireitScriptProperties),
|
|
54092
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
54093
|
+
"script",
|
|
54094
|
+
'cascade'
|
|
54095
|
+
])))),
|
|
54096
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
54097
|
+
key,
|
|
54098
|
+
sortObjectBy([
|
|
54099
|
+
'external',
|
|
54100
|
+
'default'
|
|
54101
|
+
])(value1)
|
|
54102
|
+
]))))),
|
|
54103
|
+
overProperty('service', sort_package_json_pipe([
|
|
54104
|
+
sortObjectBy([
|
|
54105
|
+
'readyWhen'
|
|
54106
|
+
]),
|
|
54107
|
+
overProperty('readyWhen', sortObject)
|
|
54108
|
+
]))
|
|
54109
|
+
]);
|
|
54110
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
54111
|
+
name,
|
|
54112
|
+
sortWireitScript(config)
|
|
54113
|
+
]))));
|
|
54084
54114
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
54085
54115
|
'name',
|
|
54086
54116
|
'version',
|
|
@@ -54368,6 +54398,10 @@ var __webpack_modules__ = {
|
|
|
54368
54398
|
key: 'betterScripts',
|
|
54369
54399
|
over: sortScripts
|
|
54370
54400
|
},
|
|
54401
|
+
{
|
|
54402
|
+
key: 'wireit',
|
|
54403
|
+
over: sortWireit
|
|
54404
|
+
},
|
|
54371
54405
|
{
|
|
54372
54406
|
key: 'l10n'
|
|
54373
54407
|
},
|
package/esm/792.js
CHANGED
|
@@ -60354,6 +60354,36 @@ const sortVolta = sortObjectBy([
|
|
|
60354
60354
|
'npm',
|
|
60355
60355
|
'yarn'
|
|
60356
60356
|
]);
|
|
60357
|
+
const wireitScriptProperties = [
|
|
60358
|
+
'command',
|
|
60359
|
+
'dependencies',
|
|
60360
|
+
'files',
|
|
60361
|
+
'output'
|
|
60362
|
+
];
|
|
60363
|
+
const sortWireitScript = sort_package_json_pipe([
|
|
60364
|
+
sortObjectBy(wireitScriptProperties),
|
|
60365
|
+
overProperty('dependencies', onArray((deps)=>deps.map(sortObjectBy([
|
|
60366
|
+
"script",
|
|
60367
|
+
'cascade'
|
|
60368
|
+
])))),
|
|
60369
|
+
overProperty('env', onObject((env)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(env).map(([key, value1])=>[
|
|
60370
|
+
key,
|
|
60371
|
+
sortObjectBy([
|
|
60372
|
+
'external',
|
|
60373
|
+
'default'
|
|
60374
|
+
])(value1)
|
|
60375
|
+
]))))),
|
|
60376
|
+
overProperty('service', sort_package_json_pipe([
|
|
60377
|
+
sortObjectBy([
|
|
60378
|
+
'readyWhen'
|
|
60379
|
+
]),
|
|
60380
|
+
overProperty('readyWhen', sortObject)
|
|
60381
|
+
]))
|
|
60382
|
+
]);
|
|
60383
|
+
const sortWireit = onObject((wireit)=>sortObjectByKeyNameList(Object.fromEntries(Object.entries(wireit).map(([name, config])=>[
|
|
60384
|
+
name,
|
|
60385
|
+
sortWireitScript(config)
|
|
60386
|
+
]))));
|
|
60357
60387
|
const sortDevEngines = overProperty('packageManager', sortObjectBy([
|
|
60358
60388
|
'name',
|
|
60359
60389
|
'version',
|
|
@@ -60641,6 +60671,10 @@ const sort_package_json_fields = [
|
|
|
60641
60671
|
key: 'betterScripts',
|
|
60642
60672
|
over: sortScripts
|
|
60643
60673
|
},
|
|
60674
|
+
{
|
|
60675
|
+
key: 'wireit',
|
|
60676
|
+
over: sortWireit
|
|
60677
|
+
},
|
|
60644
60678
|
{
|
|
60645
60679
|
key: 'l10n'
|
|
60646
60680
|
},
|
|
@@ -8,18 +8,9 @@
|
|
|
8
8
|
* @packageDocumentation
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
|
-
import {
|
|
11
|
+
import { Changesets } from '@savvy-web/silk-effects';
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*
|
|
16
|
-
* Drop-in replacement for \@savvy-web/changesets/changelog.
|
|
17
|
-
* The default export is the ChangelogFunctions object consumed by the
|
|
18
|
-
* Changesets CLI via the changelog field in .changeset/config.json.
|
|
19
|
-
*
|
|
20
|
-
* @packageDocumentation
|
|
21
|
-
*/
|
|
22
|
-
declare const _default: ChangelogFunctions;
|
|
23
|
-
export default _default;
|
|
13
|
+
declare const changelogFunctions: typeof Changesets.changelogFunctions;
|
|
14
|
+
export default changelogFunctions;
|
|
24
15
|
|
|
25
16
|
export { }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/silk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The single Silk Suite dev-tooling package — changeset, commitlint, lint, and biome conventions",
|
|
6
6
|
"homepage": "https://github.com/savvy-web/systems/tree/main/packages/silk",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@changesets/cli": "^2.31.0",
|
|
74
74
|
"@commitlint/cli": "^21.0.1",
|
|
75
75
|
"@commitlint/config-conventional": "^21.0.2",
|
|
76
|
-
"@types/node": "^25.
|
|
76
|
+
"@types/node": "^25.9.0",
|
|
77
77
|
"@typescript/native-preview": "^7.0.0-dev.20260513.1",
|
|
78
78
|
"commitizen": "^4.3.0",
|
|
79
79
|
"husky": "^9.1.0",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
83
83
|
"turbo": "^2.9.16",
|
|
84
84
|
"typescript": "^6.0.0",
|
|
85
|
-
"@savvy-web/cli": "0.
|
|
86
|
-
"@savvy-web/mcp": "0.
|
|
85
|
+
"@savvy-web/cli": "0.3.1",
|
|
86
|
+
"@savvy-web/mcp": "0.3.1"
|
|
87
87
|
},
|
|
88
88
|
"peerDependenciesMeta": {
|
|
89
89
|
"@biomejs/biome": {
|