@savvy-web/cli 1.2.0 → 1.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/cli/index.js +1 -1
- package/commands/clean.js +1 -1
- package/package.json +4 -4
- package/bin/savvy.d.ts +0 -1
package/cli/index.js
CHANGED
|
@@ -57,7 +57,7 @@ const rootCommand = Command.make("savvy").pipe(Command.withSubcommands([
|
|
|
57
57
|
]));
|
|
58
58
|
const cli = Command.run(rootCommand, {
|
|
59
59
|
name: "savvy",
|
|
60
|
-
version: "1.
|
|
60
|
+
version: "1.3.1"
|
|
61
61
|
});
|
|
62
62
|
/**
|
|
63
63
|
* Shared base layer: workspace services, the changeset config reader, and the
|
package/commands/clean.js
CHANGED
|
@@ -23,7 +23,7 @@ const DEFAULT_GLOBS = [
|
|
|
23
23
|
".rslib"
|
|
24
24
|
];
|
|
25
25
|
/** Directory names a recursive (`**`) glob must never descend into. */
|
|
26
|
-
const NO_DESCEND = new Set(["node_modules", ".git"]);
|
|
26
|
+
const NO_DESCEND = /* @__PURE__ */ new Set(["node_modules", ".git"]);
|
|
27
27
|
/** Unexpected failure while planning or removing artifacts. */
|
|
28
28
|
var CleanError = class extends Data.TaggedError("CleanError") {};
|
|
29
29
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The savvy CLI — unified commit, changeset, and lint commands for the Silk Suite",
|
|
6
6
|
"homepage": "https://github.com/savvy-web/systems/tree/main/packages/cli",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@effect/cli": "^0.75.2",
|
|
34
34
|
"@effect/cluster": "^0.59.0",
|
|
35
|
-
"@effect/platform": "^0.96.
|
|
35
|
+
"@effect/platform": "^0.96.2",
|
|
36
36
|
"@effect/platform-node": "^0.107.0",
|
|
37
37
|
"@effect/rpc": "^0.75.1",
|
|
38
38
|
"@effect/sql": "^0.51.1",
|
|
39
|
-
"@savvy-web/silk-effects": "1.
|
|
40
|
-
"effect": "^3.21.
|
|
39
|
+
"@savvy-web/silk-effects": "1.5.0",
|
|
40
|
+
"effect": "^3.21.4",
|
|
41
41
|
"jsonc-effect": "^0.2.1",
|
|
42
42
|
"workspaces-effect": "^1.2.0",
|
|
43
43
|
"yaml": "^2.9.0"
|
package/bin/savvy.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { };
|