Updates
This commit is contained in:
parent
09e8b1f6d7
commit
a3e20f15ef
2
dist/tsconfig.tsbuildinfo
vendored
2
dist/tsconfig.tsbuildinfo
vendored
File diff suppressed because one or more lines are too long
2
dist/utils/kill-child.js
vendored
2
dist/utils/kill-child.js
vendored
@ -16,8 +16,6 @@ exports.default = killChild;
|
|||||||
const console_colors_1 = __importDefault(require("./console-colors"));
|
const console_colors_1 = __importDefault(require("./console-colors"));
|
||||||
const kill_port_1 = __importDefault(require("kill-port"));
|
const kill_port_1 = __importDefault(require("kill-port"));
|
||||||
let childProcess = null;
|
let childProcess = null;
|
||||||
const pTitle = "nodecid";
|
|
||||||
process.title = pTitle;
|
|
||||||
/**
|
/**
|
||||||
* ## Kill Child Process Function
|
* ## Kill Child Process Function
|
||||||
* @param {string | number | (string | number)[]} [port]
|
* @param {string | number | (string | number)[]} [port]
|
||||||
|
2
dist/utils/run.js
vendored
2
dist/utils/run.js
vendored
@ -8,8 +8,6 @@ const child_process_1 = require("child_process");
|
|||||||
const console_colors_1 = __importDefault(require("./console-colors"));
|
const console_colors_1 = __importDefault(require("./console-colors"));
|
||||||
let redeployments = 0;
|
let redeployments = 0;
|
||||||
const KILL_SIGNAL = "SIGTERM";
|
const KILL_SIGNAL = "SIGTERM";
|
||||||
const pTitle = "nodecid";
|
|
||||||
process.title = pTitle;
|
|
||||||
/**
|
/**
|
||||||
* ## Preflight Function
|
* ## Preflight Function
|
||||||
* @param {string} command
|
* @param {string} command
|
||||||
|
@ -1,9 +1,14 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
tsc
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
msg="Updates"
|
msg="Updates"
|
||||||
else
|
else
|
||||||
msg="$1"
|
msg="$1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git add . && git commit -m "$msg" && git push && npm publish
|
git add .
|
||||||
|
git commit -m "$msg"
|
||||||
|
git push
|
||||||
|
npm publish
|
||||||
|
@ -4,9 +4,6 @@ import kill from "kill-port";
|
|||||||
|
|
||||||
let childProcess: ChildProcess | null = null;
|
let childProcess: ChildProcess | null = null;
|
||||||
|
|
||||||
const pTitle = "nodecid";
|
|
||||||
process.title = pTitle;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ## Kill Child Process Function
|
* ## Kill Child Process Function
|
||||||
* @param {string | number | (string | number)[]} [port]
|
* @param {string | number | (string | number)[]} [port]
|
||||||
|
@ -5,9 +5,6 @@ let redeployments = 0;
|
|||||||
|
|
||||||
const KILL_SIGNAL: NodeJS.Signals | number = "SIGTERM";
|
const KILL_SIGNAL: NodeJS.Signals | number = "SIGTERM";
|
||||||
|
|
||||||
const pTitle = "nodecid";
|
|
||||||
process.title = pTitle;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ## Preflight Function
|
* ## Preflight Function
|
||||||
* @param {string} command
|
* @param {string} command
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
function githubWebhook() {
|
|
||||||
return true;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user