@stacksjs/path 0.38.3 → 0.39.0

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.d.ts CHANGED
@@ -41,7 +41,7 @@ export declare function configPath(): any;
41
41
  export declare function corePath(path?: string): any;
42
42
  export declare function docsPath(path?: string): any;
43
43
  export declare function customElementsDataPath(): any;
44
- export declare function errorsPath(path?: string): any;
44
+ export declare function errorHandlingPath(path?: string): any;
45
45
  export declare function examplesPath(type: 'vue-components' | 'web-components'): any;
46
46
  export declare function frameworkPath(path?: string): any;
47
47
  export declare function fsPath(path?: string): any;
@@ -50,7 +50,7 @@ export declare function gitPath(path?: string): any;
50
50
  export declare function langPath(path?: string): any;
51
51
  export declare function libraryEntryPath(type: 'vue-components' | 'web-components' | 'functions'): any;
52
52
  export declare function lintPath(path?: string): any;
53
- export declare function loggingPath(path?: string): any;
53
+ export declare function xRayPath(path?: string): any;
54
54
  export declare function modulesPath(path?: string): any;
55
55
  export declare function objectsPath(path?: string): any;
56
56
  export declare function packageJsonPath(type: 'vue-components' | 'web-components' | 'functions'): any;
@@ -85,7 +85,7 @@ export declare const path: {
85
85
  corePath: typeof corePath;
86
86
  customElementsDataPath: typeof customElementsDataPath;
87
87
  docsPath: typeof docsPath;
88
- errorsPath: typeof errorsPath;
88
+ errorHandlingPath: typeof errorHandlingPath;
89
89
  examplesPath: typeof examplesPath;
90
90
  frameworkPath: typeof frameworkPath;
91
91
  fsPath: typeof fsPath;
@@ -94,7 +94,7 @@ export declare const path: {
94
94
  langPath: typeof langPath;
95
95
  libraryEntryPath: typeof libraryEntryPath;
96
96
  lintPath: typeof lintPath;
97
- loggingPath: typeof loggingPath;
97
+ xRayPath: typeof xRayPath;
98
98
  modulesPath: typeof modulesPath;
99
99
  objectsPath: typeof objectsPath;
100
100
  packageJsonPath: typeof packageJsonPath;
package/dist/index.mjs CHANGED
@@ -47,8 +47,8 @@ export function docsPath(path2) {
47
47
  export function customElementsDataPath() {
48
48
  return frameworkPath("custom-elements.json");
49
49
  }
50
- export function errorsPath(path2) {
51
- return corePath(`errors/${path2 || ""}`);
50
+ export function errorHandlingPath(path2) {
51
+ return corePath(`error-handling/${path2 || ""}`);
52
52
  }
53
53
  export function examplesPath(type) {
54
54
  return frameworkPath(`examples/${type || ""}`);
@@ -74,8 +74,8 @@ export function libraryEntryPath(type) {
74
74
  export function lintPath(path2) {
75
75
  return corePath(`lint/${path2 || ""}`);
76
76
  }
77
- export function loggingPath(path2) {
78
- return corePath(`logging/${path2 || ""}`);
77
+ export function xRayPath(path2) {
78
+ return corePath(`x-ray/${path2 || ""}`);
79
79
  }
80
80
  export function modulesPath(path2) {
81
81
  return corePath(`modules/${path2 || ""}`);
@@ -162,7 +162,7 @@ export const path = {
162
162
  corePath,
163
163
  customElementsDataPath,
164
164
  docsPath,
165
- errorsPath,
165
+ errorHandlingPath,
166
166
  examplesPath,
167
167
  frameworkPath,
168
168
  fsPath,
@@ -171,7 +171,7 @@ export const path = {
171
171
  langPath,
172
172
  libraryEntryPath,
173
173
  lintPath,
174
- loggingPath,
174
+ xRayPath,
175
175
  modulesPath,
176
176
  objectsPath,
177
177
  packageJsonPath,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/path",
3
3
  "type": "module",
4
- "version": "0.38.3",
4
+ "version": "0.39.0",
5
5
  "packageManager": "pnpm@7.15.0",
6
6
  "description": "The Stacks path.",
7
7
  "author": "Chris Breuer",