Skip to content

Commit 499a0fc

Browse files
committed
Refactor frontend into modules
1 parent e2b9068 commit 499a0fc

File tree

20 files changed

+5036
-4
lines changed

20 files changed

+5036
-4
lines changed

.devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
"ghcr.io/devcontainers-extra/features/apt-packages:1": {
4343
"packages": "ffmpeg,libturbojpeg0,libpcap-dev,ripgrep"
4444
},
45-
"ghcr.io/jsburckhardt/devcontainer-features/codex:1": {}
45+
"ghcr.io/jsburckhardt/devcontainer-features/codex:1": {},
46+
"ghcr.io/devcontainers/features/node:1": {},
47+
"ghcr.io/devcontainers-community/npm-features/typescript:1": {}
4648
}
4749
}

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,3 +209,9 @@ cython_debug/
209209
marimo/_static/
210210
marimo/_lsp/
211211
__marimo__/
212+
213+
# Node
214+
node_modules/
215+
216+
# Keep the compiled frontend since its needed for HACS install.
217+
!/custom_components/maint/frontend/dist
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
node_modules
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": false,
3+
"trailingComma": "es5",
4+
"printWidth": 100
5+
}

0 commit comments

Comments
 (0)