Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .commitlintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@commitlint/config-conventional"]
}
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ RUN git config --system core.editor "code --wait"
# Set Safe Directory
RUN git config --system safe.directory '/workspace'

# Make node_modules for monorepo volume (includes commitlint config)
RUN mkdir -p /workspace/node_modules && chown $USERNAME /workspace/node_modules
VOLUME /workspace/node_modules

# Make frontend node_modules
RUN mkdir -p /workspace/frontend/node_modules && chown $USERNAME /workspace/frontend/node_modules
VOLUME /workspace/frontend/node_modules
Expand Down
1 change: 1 addition & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
1561,
1562
],
"postCreateCommand": "npm install && npm run prepare && cd frontend && npm install",
"customizations": {
"vscode": {
"extensions": [
Expand Down
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx --no -- commitlint --edit $1
4,770 changes: 2,506 additions & 2,264 deletions frontend/package-lock.json

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
"openmeteo": "^1.1.4",
"rxjs": "~7.8.1",
"tslib": "~2.6.3",
"zone.js": "~0.15.1"
"zone.js": "~0.15.1",
"@tailwindcss/postcss": "^4.1.18",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@angular-eslint/builder": "~18.3.0",
Expand Down Expand Up @@ -58,6 +60,7 @@
"prettier": "~3.3.3",
"prettier-eslint": "~16.3.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "~5.9.2"
"typescript": "~5.9.2",
"postcss": "^8.5.6"
}
}
}
Loading