@savvy-web/silk-effects 5.7.1 → 5.7.2
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/index.d.ts +1 -1
- package/package.json +4 -4
- package/schemas/VersioningSchemas.js +1 -1
package/index.d.ts
CHANGED
|
@@ -2771,7 +2771,7 @@ declare class ChangesetConfigError extends ChangesetConfigError_base<{
|
|
|
2771
2771
|
//#endregion
|
|
2772
2772
|
//#region src/schemas/VersioningSchemas.d.ts
|
|
2773
2773
|
/**
|
|
2774
|
-
* Standard changesets configuration matching the `@changesets/config@4.0.0
|
|
2774
|
+
* Standard changesets configuration matching the `@changesets/config@4.0.0` spec.
|
|
2775
2775
|
*
|
|
2776
2776
|
* @remarks
|
|
2777
2777
|
* Represents the parsed `.changeset/config.json` file. All fields are optional
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/silk-effects",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Shared Effect library for Silk Suite conventions",
|
|
6
6
|
"homepage": "https://github.com/savvy-web/systems/tree/main/packages/silk-effects",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"./package.json": "./package.json"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@changesets/apply-release-plan": "^8.0.0
|
|
33
|
-
"@changesets/config": "^4.0.0
|
|
32
|
+
"@changesets/apply-release-plan": "^8.0.0",
|
|
33
|
+
"@changesets/config": "^4.0.0",
|
|
34
34
|
"@changesets/get-github-info": "^1.0.0",
|
|
35
|
-
"@changesets/get-release-plan": "^5.0.0
|
|
35
|
+
"@changesets/get-release-plan": "^5.0.0",
|
|
36
36
|
"@effected/commands": "^0.4.0",
|
|
37
37
|
"@effected/git": "^0.7.0",
|
|
38
38
|
"@effected/glob": "^0.3.0",
|
|
@@ -30,7 +30,7 @@ const SnapshotConfig = Schema.Struct({
|
|
|
30
30
|
prereleaseTemplate: Schema.optional(Schema.String)
|
|
31
31
|
});
|
|
32
32
|
/**
|
|
33
|
-
* Standard changesets configuration matching the `@changesets/config@4.0.0
|
|
33
|
+
* Standard changesets configuration matching the `@changesets/config@4.0.0` spec.
|
|
34
34
|
*
|
|
35
35
|
* @remarks
|
|
36
36
|
* Represents the parsed `.changeset/config.json` file. All fields are optional
|