@slugbugblue/trax-cli 0.12.0 → 0.12.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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/src/cmds/import-export.js +3 -2
- package/src/version.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Copyright 2022-
|
|
1
|
+
/* Copyright 2022-2025 Chad Transtrum
|
|
2
2
|
*
|
|
3
3
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
* you may not use this file except in compliance with the License.
|
|
@@ -48,7 +48,8 @@ const expandPath = (name) => {
|
|
|
48
48
|
const getPath = async (path) => {
|
|
49
49
|
if (path in PATHS) return PATHS[path]
|
|
50
50
|
if (path in paths) {
|
|
51
|
-
const realPath =
|
|
51
|
+
const realPath = paths[path]
|
|
52
|
+
await fs.mkdir(realPath, { recursive: true })
|
|
52
53
|
PATHS[path] = realPath
|
|
53
54
|
return realPath
|
|
54
55
|
}
|
package/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '0.12.
|
|
2
|
+
export const version = '0.12.1'
|