@vexify-org/yaggs 6.13.0 → 6.14.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/index.js +4 -0
- package/lib/parser.js +32 -0
- package/package.json +1 -1
package/index.js
CHANGED
package/lib/parser.js
CHANGED
|
@@ -1097,6 +1097,38 @@ complete -c ${this.scriptName} `;
|
|
|
1097
1097
|
});
|
|
1098
1098
|
}
|
|
1099
1099
|
|
|
1100
|
+
file(path, options = {}) {
|
|
1101
|
+
const fs = require('fs');
|
|
1102
|
+
const pathMod = require('path');
|
|
1103
|
+
|
|
1104
|
+
return {
|
|
1105
|
+
read: () => {
|
|
1106
|
+
const encoding = options.encoding || 'utf8';
|
|
1107
|
+
return fs.readFileSync(path, encoding);
|
|
1108
|
+
},
|
|
1109
|
+
readJson: () => {
|
|
1110
|
+
const content = fs.readFileSync(path, 'utf8');
|
|
1111
|
+
return JSON.parse(content);
|
|
1112
|
+
},
|
|
1113
|
+
write: (content) => {
|
|
1114
|
+
const encoding = options.encoding || 'utf8';
|
|
1115
|
+
return fs.writeFileSync(path, content, encoding);
|
|
1116
|
+
},
|
|
1117
|
+
writeJson: (content, space = 2) => {
|
|
1118
|
+
const json = JSON.stringify(content, null, space);
|
|
1119
|
+
return fs.writeFileSync(path, json, 'utf8');
|
|
1120
|
+
},
|
|
1121
|
+
exists: () => fs.existsSync(path),
|
|
1122
|
+
mkdir: () => fs.mkdirSync(path, { recursive: true }),
|
|
1123
|
+
rm: () => fs.unlinkSync(path),
|
|
1124
|
+
stat: () => fs.statSync(path),
|
|
1125
|
+
dirname: () => pathMod.dirname(path),
|
|
1126
|
+
basename: () => pathMod.basename(path),
|
|
1127
|
+
extname: () => pathMod.extname(path),
|
|
1128
|
+
resolve: () => pathMod.resolve(path)
|
|
1129
|
+
};
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1100
1132
|
getHelp() {
|
|
1101
1133
|
let help = `\u001b[36m${this.scriptName}\u001b[0m`;
|
|
1102
1134
|
|