Skip to content

Commit 7d3f0f9

Browse files
Release 2.0
# Changes and Updates - Upgrade node js to LTS 10.15.3 - Upgrade node modules to latest versions. - Remove gulp & used pm2 for production and nodemon for local. - Update linting - Docker integration. - Updated test cases. - Bug fixes. # Breaking Changes - Remove gulp totally and used pm2 and nodemon to start server.
1 parent 323043a commit 7d3f0f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+10313
-810
lines changed

.eslintignore

+56-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
11
**/node_modules/**
22
**/cert/**
3-
**/static/**
3+
swagger
4+
# Logs
5+
logs
6+
*.log
7+
npm-debug.log*
8+
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directory
30+
node_modules
31+
32+
# Optional npm cache directory
33+
.npm
34+
35+
# Optional REPL history
36+
.node_repl_history
37+
38+
39+
### SublimeText ###
40+
# cache files for sublime text
41+
*.tmlanguage.cache
42+
*.tmPreferences.cache
43+
*.stTheme.cache
44+
45+
# workspace files are user-specific
46+
*.sublime-workspace
47+
48+
# project files should be checked into the repository, unless a significant
49+
# proportion of contributors will probably not be using SublimeText
50+
*.sublime-project
51+
52+
# sftp configuration file
53+
sftp-config.json
54+
55+
#Documentation
56+
docs
57+
.env
58+
.vscode

.eslintrc

-8
This file was deleted.

0 commit comments

Comments
 (0)