Skip to content
This repository was archived by the owner on Nov 6, 2022. It is now read-only.

Commit 4eea1ee

Browse files
authored
Merge pull request #159 from trailimage/develop
Develop
2 parents 4a6f677 + beb274a commit 4eea1ee

Some content is hidden

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

57 files changed

+1192
-2024
lines changed

.vscode/launch.json

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@
2222
"cwd": "${workspaceRoot}",
2323
"protocol": "inspector"
2424
},
25+
{
26+
// https://github.com/whitecolor/ts-node-dev/issues/9
27+
// https://github.com/whitecolor/ts-node-dev/issues/64
28+
"name": "Server (ts-node-dev)",
29+
"type": "node",
30+
"request": "launch",
31+
"args": ["${workspaceRoot}/src/app.ts"],
32+
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node-dev",
33+
//"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
34+
"sourceMaps": true,
35+
"cwd": "${workspaceRoot}",
36+
"protocol": "inspector",
37+
"restart": true
38+
},
2539
{
2640
"name": "Jest",
2741
"type": "node",

.vscode/tasks.json

+37-4
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,6 @@
8888
},
8989
{
9090
"label": "Run with nodemon",
91-
"group": {
92-
"kind": "build",
93-
"isDefault": true
94-
},
9591
"presentation": {
9692
"group": "run"
9793
},
@@ -111,6 +107,43 @@
111107
},
112108
"problemMatcher": "$tsc"
113109
},
110+
{
111+
"label": "Run with ts-node-dev",
112+
"group": {
113+
"kind": "build",
114+
"isDefault": true
115+
},
116+
"presentation": {
117+
"group": "run",
118+
"clear": true,
119+
"echo": false
120+
},
121+
"command": "./node_modules/.bin/ts-node-dev",
122+
"args": [
123+
"--respawn",
124+
"--clear",
125+
"--no-notify",
126+
"--watch",
127+
"views",
128+
"--ignore-watch",
129+
"src/client",
130+
"--debounce",
131+
"4000",
132+
"--project",
133+
"tsconfig.node.json",
134+
//"--transpileOnly",
135+
"--",
136+
"./src/app.ts",
137+
"--serve"
138+
],
139+
"type": "shell",
140+
"options": {
141+
"env": {
142+
"EMAIL_CONTACT": "nobody@nowhere.com"
143+
}
144+
},
145+
"problemMatcher": "$tsc"
146+
},
114147
{
115148
"label": "List Production Dependencies",
116149
"command": "npm",

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1+
## 5.0.0
2+
3+
- Change layout
4+
- Simplify category selector (remove JavaScript)
5+
- Remove Google Analytics (unecessary privacy invasion)
6+
- Remove Facebook "Like" button
7+
- Remove Twitter link and API
8+
19
## 4.3.1
210

3-
- Update Google API and other dependencies
11+
- Update Google API and other dependencies
412

513
## 4.3.0
614

nodemon.json

-5
This file was deleted.

0 commit comments

Comments
 (0)