Skip to content

Commit

Permalink
2.0.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNovak committed Sep 30, 2020
1 parent df0807c commit ba3473f
Show file tree
Hide file tree
Showing 29 changed files with 1,064 additions and 1,298 deletions.
50 changes: 39 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Created by https://www.gitignore.io/api/node
# Edit at https://www.gitignore.io/?templates=node

### Custom ###
*.env
# =====================================================
# Custom
# =====================================================
dist
config.*.json
data

### Node ###
# =====================================================
# Node.js
# =====================================================
# Logs
logs
*.log
Expand Down Expand Up @@ -49,8 +51,8 @@ build/Release
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo
Expand All @@ -61,6 +63,12 @@ typings/
# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

Expand All @@ -76,12 +84,21 @@ typings/

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# next.js build output
# Next.js build output
.next
out

# nuxt.js build output
# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist
Expand All @@ -95,4 +112,15 @@ typings/
# DynamoDB Local files
.dynamodb/

# End of https://www.gitignore.io/api/node
# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2

.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.pnp.*
10 changes: 5 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Start",
"program": "${workspaceFolder}\\app.js"
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}\\dist\\app.js",
"preLaunchTask": "tsc",
"internalConsoleOptions": "openOnSessionStart"
}
]
}
}
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "tsc",
"type": "shell",
"command": "${workspaceFolder}\\node_modules\\.bin\\tsc"
}
],
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
}
1 change: 1 addition & 0 deletions config/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
3 changes: 3 additions & 0 deletions config/debug.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"enabled": true
}
3 changes: 0 additions & 3 deletions debug.json

This file was deleted.

7 changes: 7 additions & 0 deletions lang/logs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"info": {
"started": "Application started."
},
"warn": {},
"error": {}
}
8 changes: 0 additions & 8 deletions models/exceptions.js

This file was deleted.

Loading

0 comments on commit ba3473f

Please sign in to comment.