This commit is contained in:
watsonb8 2020-12-10 19:43:47 -05:00
parent 7dc9758147
commit cc438deda7
4 changed files with 32 additions and 37 deletions

5
package-lock.json generated
View File

@ -16,8 +16,9 @@
"integrity": "sha1-sffn/HPSXn/R1FWtyU4UODAYK1o=" "integrity": "sha1-sffn/HPSXn/R1FWtyU4UODAYK1o="
}, },
"node-common": { "node-common": {
"version": "git+ssh://git@thebword.ddns.net:3122/watsonb8/node-common.git#3ee1400be94851335e822916861ea2eddb9e344f", "version": "git+ssh://git@thebword.ddns.net:3122/watsonb8/node-common.git#d9d654ca19ab3be9ba403eaef1c952b1168e197e",
"from": "git+ssh://git@thebword.ddns.net:3122/watsonb8/node-common.git" "from": "git+ssh://git@thebword.ddns.net:3122/watsonb8/node-common.git",
"dev": true
} }
} }
} }

View File

@ -1,27 +1,27 @@
{ {
"name": "rtsp-stream", "name": "rtsp-stream",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"main": "index.ts", "main": "index.ts",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build" "build": "tsc --build"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "ssh://git@thebword.ddns.net:3122/watsonb8/rtsp-stream.git" "url": "ssh://git@thebword.ddns.net:3122/watsonb8/rtsp-stream.git"
}, },
"keywords": [ "keywords": [
"rtsp", "rtsp",
"typescript" "typescript"
], ],
"author": "Brandon Watson", "author": "Brandon Watson",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"child_process": "^1.0.2", "child_process": "^1.0.2"
"node-common": "git+ssh://git@thebword.ddns.net:3122/watsonb8/node-common.git" },
}, "devDependencies": {
"devDependencies": { "@types/node": "^14.14.6",
"@types/node": "^14.14.6" "node-common": "git+ssh://git@thebword.ddns.net:3122/watsonb8/node-common.git"
} }
} }

View File

@ -1,8 +1,7 @@
import { ChildProcess, spawn } from "child_process"; import { ChildProcess, spawn } from "child_process";
import { EventEmitter } from "events";
import { Writable } from "stream"; import { Writable } from "stream";
import { IOptions } from "./options"; import { IOptions } from "./options";
import { Event } from "common/events"; import { Event } from "node_modules/node-common/lib/events/event";
const ef1 = "ff"; const ef1 = "ff";
const ef2 = "d9"; const ef2 = "d9";

View File

@ -8,8 +8,8 @@
// "allowJs": true, /* Allow javascript files to be compiled. */ // "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */ // "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
// "declaration": true, /* Generates corresponding '.d.ts' file. */ "declaration": true /* Generates corresponding '.d.ts' file. */,
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ "declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */,
"sourceMap": true /* Generates corresponding '.map' file. */, "sourceMap": true /* Generates corresponding '.map' file. */,
// "outFile": "./", /* Concatenate and emit output to single file. */ // "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "./lib" /* Redirect output structure to the directory. */, "outDir": "./lib" /* Redirect output structure to the directory. */,
@ -58,10 +58,5 @@
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
/* Advanced Options */ /* Advanced Options */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
}, }
"references": [
{
"path": "./node_modules/node-common/tsconfig.json"
}
]
} }