@stacksjs/path 0.58.64 → 0.58.65

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +1 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/path",
3
3
  "type": "module",
4
- "version": "0.58.64",
4
+ "version": "0.58.65",
5
5
  "description": "The Stacks path.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/index.ts CHANGED
@@ -340,6 +340,7 @@ export function paymentsPath(path?: string) {
340
340
  return corePath(`payments/${path || ''}`)
341
341
  }
342
342
 
343
+ // all paths ultimately build on the projectPath
343
344
  export function projectPath(filePath = '') {
344
345
  let path = process.cwd()
345
346