Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11,698 changes: 11,660 additions & 38 deletions package-lock.json

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -3,10 +3,10 @@
"version": "1.1.0",
"description": "A simple and free API to find things to do when you're bored",
"scripts": {
"build-dev": "npm run clean; webpack --inline --progress --color --config build/webpack.dev.conf.js",
"build": "npm run clean; webpack --inline --progress --color --config build/webpack.prod.conf.js",
"start-dev": "export NODE_ENV=development; npm run build-dev && node server.js",
"start": "export NODE_ENV=production; npm run build && node server.js",
"build-dev": "npm run clean && webpack --inline --progress --color --config build/webpack.dev.conf.js",
"build": "npm run clean && webpack --inline --progress --color --config build/webpack.prod.conf.js",
"start-dev": "cross-env NODE_ENV=development npm run build-dev && node server.js",
"start": "cross-env NODE_ENV=production npm run build && node server.js",
"clean": "rm -r dist/*",
"test-i": "mocha test/backend/integration --timeout 60000",
"test-db": "mocha test/db --timeout 60000",
@@ -44,6 +44,7 @@
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.3",
"css-loader": "^3.5.2",
"eslint": "^7.0.0",
"faker": "^4.1.0",
2 changes: 1 addition & 1 deletion src/frontend/pages/Error.vue
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
</div>

<div class="content">
<h4>Hm looks like your lost... Maybe try heading <router-link :to="{ name: 'Home' }">home</router-link>?</h4>
<h4>Hm, looks like you're lost... Maybe try heading <router-link :to="{ name: 'Home' }">home</router-link>?</h4>
</div>

<div class="bottombar-div">