Skip to content

Commit

Permalink
Merge pull request #258 from paywteam/master
Browse files Browse the repository at this point in the history
v2.1.0-beta.13
  • Loading branch information
jhaemin authored Feb 10, 2020
2 parents 6f57c65 + 1db3bf2 commit d4e48c8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v2.1.0 Beta 13

### Fix

- Add a component name to lecture page

## v2.1.0 Beta 12

### Features
Expand Down
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"name": "eodiro",
"version": "2.1.0-beta.12",
"version": "2.1.0-beta.13",
"description": "CAU Utility Service",
"scripts": {
"build": "nuxt build",
"dev": "cross-env HOST=0.0.0.0 PORT=3020 NODE_ENV=development nuxt",
"start": "cross-env HOST=0.0.0.0 nuxt start",
"start-dev": "nuxt start --port 3020",
"deploy": "npm install && npm run pm2-reboot",
"pm2-start": "pm2 start npm --name 'eodiro-client-dist' -- run start",
"pm2-restart": "pm2 restart eodiro-client-dist",
"pm2-stop": "pm2 stop eodiro-client-dist",
"pm2-delete": "pm2 delete eodiro-client-dist",
"pm2-reboot": "npm run pm2-stop && npm run pm2-delete && npm run build && npm run pm2-start",
"pm2-show": "pm2 show eodiro-client-dist",
"pm2-start": "if npm run pm2-show ; then npm run pm2-stop && npm run pm2-start ; else pm2 start npm --name 'eodiro-client-dist' -- run start ; fi",
"pm2-restart": "if npm run pm2-show ; then pm2 restart eodiro-client-dist ; else npm run pm2-no-instance ; fi",
"pm2-stop": "if npm run pm2-show ; then pm2 stop eodiro-client-dist ; else npm run pm2-no-instance ; fi",
"pm2-delete": "if pm2 show eodiro-client ; then pm2 delete eodiro-client-dist ; else npm run pm2-no-instance ; fi",
"pm2-reboot": "if npm run pm2-stop && npm run pm2-delete && npm run build && npm run pm2-start",
"pm2-no-instance": "echo 'No pm2 instance for eodiro client'",
"generate": "nuxt generate",
"add-domain": "echo \"eodiro.com\" > dist/CNAME",
"test": "mocha --require @babel/register"
Expand Down
1 change: 1 addition & 0 deletions src/pages/lectures.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ import Loading from '~/components/global/Loading'
import { CEM } from '~/modules/custom-event-manager'
export default {
name: 'lectures',
components: { Accordion, Grid, Loading },
mixins: [pageBase],
async asyncData() {
Expand Down

0 comments on commit d4e48c8

Please sign in to comment.