Skip to content

Commit

Permalink
Merge pull request #3 from mweiershaeuser/develop
Browse files Browse the repository at this point in the history
v1.1.0
  • Loading branch information
mweiershaeuser authored Apr 27, 2024
2 parents 97bde58 + b47db44 commit 900d464
Show file tree
Hide file tree
Showing 70 changed files with 13,451 additions and 27,509 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ Thumbs.db

.angular/cache
.nx/cache

memories.json
25 changes: 2 additions & 23 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "1mb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
Expand All @@ -52,27 +52,6 @@
],
"outputHashing": "all"
},
"test-server": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.test-server.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
loyolaorsino:
container_name: loyolaorsino
image: ghcr.io/mweiershaeuser/loyolaorsino:1.0.1
image: ghcr.io/mweiershaeuser/loyolaorsino:1.1.0
restart: always
networks:
- traefik_net
Expand Down
9 changes: 9 additions & 0 deletions getImageJson.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { readdirSync, writeFileSync } from "fs";

const path = "./src/assets/memories";
const fileExclusions = [".DS_Store", "memories.json"];

const memories = readdirSync(path).filter(
(file) => !fileExclusions.includes(file),
);
writeFileSync(`${path}/memories.json`, JSON.stringify(memories));
Loading

0 comments on commit 900d464

Please sign in to comment.