removed old code

This commit is contained in:
antelle 2017-05-17 19:38:33 +02:00
parent c0a6a9f4c3
commit 78200e6935
2 changed files with 1 additions and 9 deletions

View File

@ -9,7 +9,6 @@
const path = require('path');
const fs = require('fs');
const readline = require('readline');
const crypto = require('crypto');
const args = process.argv.splice(2);
@ -17,11 +16,6 @@ const pkg = require('./package.json');
const op = args.shift();
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
showBanner();
switch (op) {
@ -37,13 +31,11 @@ function showBanner() {
}
function showHelp() {
rl.close();
console.log('Usage:');
console.log(' - node keeweb-plugin sign <plugin_name>');
}
function signPlugin() {
rl.close();
const packageName = args.shift();
if (!packageName) {
showHelp();

View File

@ -1,6 +1,6 @@
{
"name": "keeweb-plugin",
"version": "0.1.2",
"version": "0.1.3",
"description": "KeeWeb plugin utils",
"main": "keeweb-plugin.js",
"scripts": {