Skip to content

Commit

Permalink
Merge pull request #127 from mStirner/dev
Browse files Browse the repository at this point in the history
Working on issues
  • Loading branch information
mStirner authored Jan 31, 2024
2 parents ab3b1b3 + 26526b3 commit c09b867
Show file tree
Hide file tree
Showing 5 changed files with 446 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
if: github.repository == 'OpenHausIO/frontend'
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js 16.x
uses: actions/setup-node@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x
- run: npm ci
- run: npm run build

Expand Down
134 changes: 134 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@vueuse/core": "^10.7.2",
"bootstrap": "^5.1.3",
"dateformat": "^5.0.3",
"pinia": "^2.0.22",
Expand All @@ -33,4 +34,4 @@
"puppeteer-screen-recorder": "^2.1.2",
"vite": "^2.9.17"
}
}
}
4 changes: 4 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ const router = createRouter({
path: "/test",
name: "/test",
component: () => import("../views/Test.vue")
}, {
path: "/grid",
name: "/grid",
component: () => import("../views/Grid.vue")
}, {
path: "/settings",
name: "Settings",
Expand Down
Loading

0 comments on commit c09b867

Please sign in to comment.