Initial import with skill sheet working

This commit is contained in:
2024-12-04 00:11:23 +01:00
commit 9050c80ab4
4488 changed files with 671048 additions and 0 deletions

20
node_modules/gulp-cli/lib/shared/completion.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
'use strict';
var fs = require('fs');
var path = require('path');
var messages = require('@gulpjs/messages');
module.exports = function(name, translate) {
if (typeof name !== 'string') {
throw new Error(translate.message({ tag: messages.COMPLETION_TYPE_MISSING }));
}
var file = path.join(__dirname, '../../completion', name);
try {
console.log(fs.readFileSync(file, 'utf8'));
process.exit(0);
} catch (err) {
console.log(translate.message({ tag: messages.COMPLETION_TYPE_UNKNOWN, name: name }));
process.exit(5);
}
};