Skip to content

Commit dc129ea

Browse files
committed
updated
1 parent ca310f8 commit dc129ea

File tree

3 files changed

+356
-4
lines changed

3 files changed

+356
-4
lines changed

.gitignore

Lines changed: 348 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,3 +828,351 @@ dist
828828
.vscode-test
829829

830830
# End of https://www.toptal.com/developers/gitignore/api/node
831+
832+
# Created by https://www.toptal.com/developers/gitignore/api/node
833+
# Edit at https://www.toptal.com/developers/gitignore?templates=node
834+
835+
### Node ###
836+
# Logs
837+
logs
838+
*.log
839+
npm-debug.log*
840+
yarn-debug.log*
841+
yarn-error.log*
842+
lerna-debug.log*
843+
844+
# Diagnostic reports (https://nodejs.org/api/report.html)
845+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
846+
847+
# Runtime data
848+
pids
849+
*.pid
850+
*.seed
851+
*.pid.lock
852+
853+
# Directory for instrumented libs generated by jscoverage/JSCover
854+
lib-cov
855+
856+
# Coverage directory used by tools like istanbul
857+
coverage
858+
*.lcov
859+
860+
# nyc test coverage
861+
.nyc_output
862+
863+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
864+
.grunt
865+
866+
# Bower dependency directory (https://bower.io/)
867+
bower_components
868+
869+
# node-waf configuration
870+
.lock-wscript
871+
872+
# Compiled binary addons (https://nodejs.org/api/addons.html)
873+
build/Release
874+
875+
# Dependency directories
876+
node_modules/
877+
jspm_packages/
878+
879+
# TypeScript v1 declaration files
880+
typings/
881+
882+
# TypeScript cache
883+
*.tsbuildinfo
884+
885+
# Optional npm cache directory
886+
.npm
887+
888+
# Optional eslint cache
889+
.eslintcache
890+
891+
# Microbundle cache
892+
.rpt2_cache/
893+
.rts2_cache_cjs/
894+
.rts2_cache_es/
895+
.rts2_cache_umd/
896+
897+
# Optional REPL history
898+
.node_repl_history
899+
900+
# Output of 'npm pack'
901+
*.tgz
902+
903+
# Yarn Integrity file
904+
.yarn-integrity
905+
906+
# dotenv environment variables file
907+
.env
908+
.env.test
909+
.env*.local
910+
911+
# parcel-bundler cache (https://parceljs.org/)
912+
.cache
913+
.parcel-cache
914+
915+
# Next.js build output
916+
.next
917+
918+
# Nuxt.js build / generate output
919+
.nuxt
920+
dist
921+
922+
# Gatsby files
923+
.cache/
924+
# Comment in the public line in if your project uses Gatsby and not Next.js
925+
# https://nextjs.org/blog/next-9-1#public-directory-support
926+
# public
927+
928+
# vuepress build output
929+
.vuepress/dist
930+
931+
# Serverless directories
932+
.serverless/
933+
934+
# FuseBox cache
935+
.fusebox/
936+
937+
# DynamoDB Local files
938+
.dynamodb/
939+
940+
# TernJS port file
941+
.tern-port
942+
943+
# Stores VSCode versions used for testing VSCode extensions
944+
.vscode-test
945+
946+
# End of https://www.toptal.com/developers/gitignore/api/node
947+
948+
# Created by https://www.toptal.com/developers/gitignore/api/node
949+
# Edit at https://www.toptal.com/developers/gitignore?templates=node
950+
951+
### Node ###
952+
# Logs
953+
logs
954+
*.log
955+
npm-debug.log*
956+
yarn-debug.log*
957+
yarn-error.log*
958+
lerna-debug.log*
959+
960+
# Diagnostic reports (https://nodejs.org/api/report.html)
961+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
962+
963+
# Runtime data
964+
pids
965+
*.pid
966+
*.seed
967+
*.pid.lock
968+
969+
# Directory for instrumented libs generated by jscoverage/JSCover
970+
lib-cov
971+
972+
# Coverage directory used by tools like istanbul
973+
coverage
974+
*.lcov
975+
976+
# nyc test coverage
977+
.nyc_output
978+
979+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
980+
.grunt
981+
982+
# Bower dependency directory (https://bower.io/)
983+
bower_components
984+
985+
# node-waf configuration
986+
.lock-wscript
987+
988+
# Compiled binary addons (https://nodejs.org/api/addons.html)
989+
build/Release
990+
991+
# Dependency directories
992+
node_modules/
993+
jspm_packages/
994+
995+
# TypeScript v1 declaration files
996+
typings/
997+
998+
# TypeScript cache
999+
*.tsbuildinfo
1000+
1001+
# Optional npm cache directory
1002+
.npm
1003+
1004+
# Optional eslint cache
1005+
.eslintcache
1006+
1007+
# Microbundle cache
1008+
.rpt2_cache/
1009+
.rts2_cache_cjs/
1010+
.rts2_cache_es/
1011+
.rts2_cache_umd/
1012+
1013+
# Optional REPL history
1014+
.node_repl_history
1015+
1016+
# Output of 'npm pack'
1017+
*.tgz
1018+
1019+
# Yarn Integrity file
1020+
.yarn-integrity
1021+
1022+
# dotenv environment variables file
1023+
.env
1024+
.env.test
1025+
.env*.local
1026+
1027+
# parcel-bundler cache (https://parceljs.org/)
1028+
.cache
1029+
.parcel-cache
1030+
1031+
# Next.js build output
1032+
.next
1033+
1034+
# Nuxt.js build / generate output
1035+
.nuxt
1036+
dist
1037+
1038+
# Gatsby files
1039+
.cache/
1040+
# Comment in the public line in if your project uses Gatsby and not Next.js
1041+
# https://nextjs.org/blog/next-9-1#public-directory-support
1042+
# public
1043+
1044+
# vuepress build output
1045+
.vuepress/dist
1046+
1047+
# Serverless directories
1048+
.serverless/
1049+
1050+
# FuseBox cache
1051+
.fusebox/
1052+
1053+
# DynamoDB Local files
1054+
.dynamodb/
1055+
1056+
# TernJS port file
1057+
.tern-port
1058+
1059+
# Stores VSCode versions used for testing VSCode extensions
1060+
.vscode-test
1061+
1062+
# End of https://www.toptal.com/developers/gitignore/api/node
1063+
1064+
# Created by https://www.toptal.com/developers/gitignore/api/node
1065+
# Edit at https://www.toptal.com/developers/gitignore?templates=node
1066+
1067+
### Node ###
1068+
# Logs
1069+
logs
1070+
*.log
1071+
npm-debug.log*
1072+
yarn-debug.log*
1073+
yarn-error.log*
1074+
lerna-debug.log*
1075+
1076+
# Diagnostic reports (https://nodejs.org/api/report.html)
1077+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1078+
1079+
# Runtime data
1080+
pids
1081+
*.pid
1082+
*.seed
1083+
*.pid.lock
1084+
1085+
# Directory for instrumented libs generated by jscoverage/JSCover
1086+
lib-cov
1087+
1088+
# Coverage directory used by tools like istanbul
1089+
coverage
1090+
*.lcov
1091+
1092+
# nyc test coverage
1093+
.nyc_output
1094+
1095+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
1096+
.grunt
1097+
1098+
# Bower dependency directory (https://bower.io/)
1099+
bower_components
1100+
1101+
# node-waf configuration
1102+
.lock-wscript
1103+
1104+
# Compiled binary addons (https://nodejs.org/api/addons.html)
1105+
build/Release
1106+
1107+
# Dependency directories
1108+
node_modules/
1109+
jspm_packages/
1110+
1111+
# TypeScript v1 declaration files
1112+
typings/
1113+
1114+
# TypeScript cache
1115+
*.tsbuildinfo
1116+
1117+
# Optional npm cache directory
1118+
.npm
1119+
1120+
# Optional eslint cache
1121+
.eslintcache
1122+
1123+
# Microbundle cache
1124+
.rpt2_cache/
1125+
.rts2_cache_cjs/
1126+
.rts2_cache_es/
1127+
.rts2_cache_umd/
1128+
1129+
# Optional REPL history
1130+
.node_repl_history
1131+
1132+
# Output of 'npm pack'
1133+
*.tgz
1134+
1135+
# Yarn Integrity file
1136+
.yarn-integrity
1137+
1138+
# dotenv environment variables file
1139+
.env
1140+
.env.test
1141+
.env*.local
1142+
1143+
# parcel-bundler cache (https://parceljs.org/)
1144+
.cache
1145+
.parcel-cache
1146+
1147+
# Next.js build output
1148+
.next
1149+
1150+
# Nuxt.js build / generate output
1151+
.nuxt
1152+
dist
1153+
1154+
# Gatsby files
1155+
.cache/
1156+
# Comment in the public line in if your project uses Gatsby and not Next.js
1157+
# https://nextjs.org/blog/next-9-1#public-directory-support
1158+
# public
1159+
1160+
# vuepress build output
1161+
.vuepress/dist
1162+
1163+
# Serverless directories
1164+
.serverless/
1165+
1166+
# FuseBox cache
1167+
.fusebox/
1168+
1169+
# DynamoDB Local files
1170+
.dynamodb/
1171+
1172+
# TernJS port file
1173+
.tern-port
1174+
1175+
# Stores VSCode versions used for testing VSCode extensions
1176+
.vscode-test
1177+
1178+
# End of https://www.toptal.com/developers/gitignore/api/node

app.js

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#! /usr/bin/env node
12
const axios = require("axios");
23
const path = require("path");
34
const fs = require("fs");

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
2-
"name": "gitIgnore-generator",
3-
"version": "1.0.0",
2+
"name": "gigen",
3+
"version": "0.0.2",
44
"description": "",
5-
"main": "index.js",
5+
"main": "app.js",
66
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
7+
"start": "node app.js"
8+
},
9+
"bin": {
10+
"gigen": "app.js"
811
},
912
"keywords": [],
1013
"author": "",

0 commit comments

Comments
 (0)