Commits (17)
-
radicalpubes authored
Initial Release for TINT
3a9c1c3b -
radicalpubes authoredbfaca4f6
-
radicalpubes authored6feac0c3
-
radicalpubes authored781f872d
-
radicalpubes authored5ac8401f
-
radicalpubes authoredc1bcab57
-
radicalpubes authored99a9882e
-
radicalpubes authoredf5c6b003
-
radicalpubes authoredcc0a2caa
-
radicalpubes authored1168a58b
-
radicalpubes authored7dccf3f0
-
radicalpubes authoredc1bdb778
-
radicalpubes authored429bac08
-
radicalpubes authored37c4ab84
-
radicalpubes authored
Commands now reside in individual folders. This makes it easier to add more commands in the future and also makes debugging much simpler. TODO: Add command which lists all available commands and describes what each command does
759f396f -
radicalpubes authoredf05c0172
-
radicalpubes authored33aa0fbe
Showing
.vscode/settings.json
0 → 100644
assets/images/TINT.jpg
0 → 100644
37.2 KB
This diff is collapsed.
| ... | ... | @@ -5,6 +5,7 @@ |
| "main": "src/app.js", | ||
| "scripts": { | ||
| "lint": "eslint src/", | ||
| "start:dev": "nodemon src/app.js", | ||
| "start": "node src/app.js" | ||
| }, | ||
| "author": "zeebhombal@gmail.com", | ||
| ... | ... | @@ -16,6 +17,7 @@ |
| "devDependencies": { | ||
| "eslint": "^7.7.0", | ||
| "eslint-config-airbnb-base": "^14.2.0", | ||
| "eslint-plugin-import": "^2.22.0" | ||
| "eslint-plugin-import": "^2.22.0", | ||
| "nodemon": "^2.0.4" | ||
| } | ||
| } | ||
| \ No newline at end of file | ||
| } |
src/commands/index.js
0 → 100644
src/commands/ping.js
0 → 100644
src/commands/source.js
0 → 100644
src/commands/whoami.js
0 → 100644