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 kill_port_1 = __importDefault(require("kill-port"));
|
||||
let childProcess = null;
|
||||
const pTitle = "nodecid";
|
||||
process.title = pTitle;
|
||||
/**
|
||||
* ## Kill Child Process Function
|
||||
* @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"));
|
||||
let redeployments = 0;
|
||||
const KILL_SIGNAL = "SIGTERM";
|
||||
const pTitle = "nodecid";
|
||||
process.title = pTitle;
|
||||
/**
|
||||
* ## Preflight Function
|
||||
* @param {string} command
|
||||
|
@ -1,9 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
tsc
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
msg="Updates"
|
||||
else
|
||||
msg="$1"
|
||||
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;
|
||||
|
||||
const pTitle = "nodecid";
|
||||
process.title = pTitle;
|
||||
|
||||
/**
|
||||
* ## Kill Child Process Function
|
||||
* @param {string | number | (string | number)[]} [port]
|
||||
|
@ -5,9 +5,6 @@ let redeployments = 0;
|
||||
|
||||
const KILL_SIGNAL: NodeJS.Signals | number = "SIGTERM";
|
||||
|
||||
const pTitle = "nodecid";
|
||||
process.title = pTitle;
|
||||
|
||||
/**
|
||||
* ## Preflight Function
|
||||
* @param {string} command
|
||||
|
@ -1,3 +0,0 @@
|
||||
function githubWebhook() {
|
||||
return true;
|
||||
}
|
Loading…
Reference in New Issue
Block a user