cli-macro 1.1.3 → 1.1.4
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -151,7 +151,7 @@ if (command === "new" || command === "n") {
|
|
|
151
151
|
}
|
|
152
152
|
fs.unlinkSync(filepath);
|
|
153
153
|
console.log(`${path.basename(filepath)} was deleted`);
|
|
154
|
-
} else if (command === "list" || command === "
|
|
154
|
+
} else if (command === "list" || command === "l") {
|
|
155
155
|
// 파일 목록 보기 기능 (.clim 파일만)
|
|
156
156
|
const files = fs.readdirSync(dataDir).filter(file => {
|
|
157
157
|
const fullPath = path.join(dataDir, file);
|