Skip to content

Commit

Permalink
release: v0.2.0-37
Browse files Browse the repository at this point in the history
  • Loading branch information
tks18 committed Dec 25, 2021
1 parent d079985 commit 46979d2
Show file tree
Hide file tree
Showing 9 changed files with 656 additions and 39 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.2.0-37](https://github.com/zyndex-drive/server/compare/v0.2.0-36...v0.2.0-37) (2021-12-25)


### Code Refactoring 🖌

* fix callback hell by using function chaining ([37719d8](https://github.com/zyndex-drive/server/commit/37719d87e97a9029f83742b9ee209ceaa3f3d750))
* **plugins:** refactor auth files to use promise chaining ([929fb62](https://github.com/zyndex-drive/server/commit/929fb622cd339a0c1a1134dfbc510314ed46571a))


### Features 🔥

* **routes:** serve index file to get request ([2f2dddb](https://github.com/zyndex-drive/server/commit/2f2dddb98fa680ec45b4e7a98cb5af4b6c682193))
* **views:** add html files ([52a2b4c](https://github.com/zyndex-drive/server/commit/52a2b4c985fab89d747a4ddcfafd9ae6d8e42c35))

## [0.2.0-36](https://github.com/zyndex-drive/server/compare/v0.2.0-35...v0.2.0-36) (2021-12-21)


Expand Down
2 changes: 1 addition & 1 deletion app.js

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zyndex-server",
"version": "0.2.0-36",
"version": "0.2.0-37",
"description": "Backend Server for Handling Zyndex Frontend",
"main": "app.js",
"scripts": {
Expand Down Expand Up @@ -88,6 +88,7 @@
"chai-each": "^0.0.1",
"chai-http": "^4.3.0",
"commitizen": "^4.2.4",
"copy-webpack-plugin": "^10.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
Expand All @@ -97,6 +98,7 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"husky": "^7.0.4",
"javascript-obfuscator": "^3.0.0",
"jsdoc": "^3.6.7",
"mocha": "^9.1.3",
"mocha-simple-html-reporter": "^2.0.0",
Expand All @@ -110,7 +112,8 @@
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
"webpack-node-externals": "^3.0.0",
"webpack-obfuscator": "^3.5.0"
},
"config": {
"commitizen": {
Expand Down
1 change: 1 addition & 0 deletions views/assets/index.0febccf6.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions views/assets/index.ac8acc9e.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions views/assets/vendor.8f5b6775.js

Large diffs are not rendered by default.

Binary file added views/favicon.ico
Binary file not shown.
16 changes: 16 additions & 0 deletions views/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script type="module" crossorigin src="/assets/index.ac8acc9e.js"></script>
<link rel="modulepreload" href="/assets/vendor.8f5b6775.js">
<link rel="stylesheet" href="/assets/index.0febccf6.css">
</head>
<body>
<div id="app"></div>

</body>
</html>
Loading

0 comments on commit 46979d2

Please sign in to comment.