@effected/xdg 0.1.10 → 0.2.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/AppDirs.js +1 -1
- package/Xdg.js +1 -1
- package/package.json +4 -4
package/AppDirs.js
CHANGED
|
@@ -28,7 +28,7 @@ const AppDirKind = Schema.Literals([
|
|
|
28
28
|
*
|
|
29
29
|
* @public
|
|
30
30
|
*/
|
|
31
|
-
var AppDirsError = class extends Schema.
|
|
31
|
+
var AppDirsError = class extends Schema.TaggedError()("AppDirsError", {
|
|
32
32
|
/** Which directory kind failed. */
|
|
33
33
|
directory: AppDirKind,
|
|
34
34
|
/** The path that could not be created. */
|
package/Xdg.js
CHANGED
|
@@ -51,7 +51,7 @@ const CurrentPlatform = Context.Reference("@effected/xdg/CurrentPlatform", { def
|
|
|
51
51
|
*
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
var XdgEnvError = class extends Schema.
|
|
54
|
+
var XdgEnvError = class extends Schema.TaggedError()("XdgEnvError", {
|
|
55
55
|
/** The environment variable that was required and not found. */
|
|
56
56
|
variable: Schema.String,
|
|
57
57
|
/** The underlying failure, preserved structurally. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effected/xdg",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "XDG Base Directory resolution for Effect: environment paths, app-namespaced directories, native OS conventions and config-file resolvers.",
|
|
6
6
|
"keywords": [
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"./package.json": "./package.json"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@effected/config-file": "^0.
|
|
42
|
-
"@effected/walker": "^0.
|
|
43
|
-
"effect": "4.0.0-beta.
|
|
41
|
+
"@effected/config-file": "^0.4.0",
|
|
42
|
+
"@effected/walker": "^0.4.0",
|
|
43
|
+
"effect": "4.0.0-beta.107"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=24.11.0"
|