@stacksjs/path 0.58.56 → 0.58.57

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.js CHANGED
@@ -150,7 +150,7 @@ function eslintPath(path) {
150
150
  return lintPath(`eslint/${path || ""}`);
151
151
  }
152
152
  function jobsPath(path) {
153
- return resourcesPath(`jobs/${path || ""}`);
153
+ return appPath(`Jobs/${path || ""}`);
154
154
  }
155
155
  function loggingPath(path) {
156
156
  return corePath(`logging/${path || ""}`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/path",
3
3
  "type": "module",
4
- "version": "0.58.56",
4
+ "version": "0.58.57",
5
5
  "description": "The Stacks path.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/index.ts CHANGED
@@ -243,7 +243,7 @@ export function eslintPath(path?: string) {
243
243
  }
244
244
 
245
245
  export function jobsPath(path?: string) {
246
- return resourcesPath(`jobs/${path || ''}`)
246
+ return appPath(`Jobs/${path || ''}`)
247
247
  }
248
248
 
249
249
  export function loggingPath(path?: string) {