NPM Scaffolding
This commit is contained in:
parent
5da96cea24
commit
926fb02654
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,4 +1,9 @@
|
|||||||
# ---> Node
|
# Target Files
|
||||||
|
inputs/*
|
||||||
|
outputs/*
|
||||||
|
temp/*
|
||||||
|
|
||||||
|
#---> Node
|
||||||
# Logs
|
# Logs
|
||||||
logs
|
logs
|
||||||
*.log
|
*.log
|
||||||
|
|||||||
3
index.js
Normal file
3
index.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
const params = process.argv;
|
||||||
|
console.log("Executed with params:");
|
||||||
|
console.log(params);
|
||||||
16
package.json
Normal file
16
package.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"name": "video-pipeline",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Re-implementation / Wrapper of many sequential scripts I use to batch-edit videos for storage & playback.",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.chloeherd.codes/walcutt/video-pipeline.git"
|
||||||
|
},
|
||||||
|
"license": "ISC",
|
||||||
|
"author": "",
|
||||||
|
"type": "commonjs",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"pipeline": "node index.js"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user