Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

Commit 920b2ab

Browse files
committed
fixing issues with building , will probably need to remove search
1 parent 87c656b commit 920b2ab

File tree

13 files changed

+2438
-1699
lines changed

13 files changed

+2438
-1699
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM node:12-alpine as builder
2-
RUN apk --no-cache add g++ gcc libgcc libstdc++ linux-headers make python dh-autoreconf
2+
RUN apk --no-cache add g++ gcc libgcc libstdc++ linux-headers make python
33

44
WORKDIR /build
55

app/app.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ import StateServiceInterface from "varie/lib/state/StateServiceInterface";
1515

1616
new Application().boot().then((app) => {
1717
if ($config.get("app.env") === "production") {
18-
Raven.config($config.get("raven.url"))
19-
.addPlugin(RavenVue)
20-
.install();
18+
Raven.config($config.get("raven.url")).addPlugin(RavenVue).install();
2119
}
2220

2321
new Vue({

app/services/DocumentationService.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export default class DocumentationService {
2525

2626
menu(version) {
2727
try {
28-
let menuTemplate = require(`@resources/docs/${version}/menu.md`).default
29-
.replace(/<a/g, "<router-link")
28+
let menuTemplate = require(`@resources/docs/${version}/menu.md`)
29+
.default.replace(/<a/g, "<router-link")
3030
.replace(/a>/g, "router-link>")
3131
.replace(/href/g, "to")
3232
.replace(/%7B%7Bversion%7D%7D/g, version);

0 commit comments

Comments
 (0)