Skip to content

Commit 9c68781

Browse files
committed
Dependabot groups
1 parent a91b488 commit 9c68781

File tree

2 files changed

+96
-2
lines changed

2 files changed

+96
-2
lines changed

.github/dependabot.yml

Lines changed: 93 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,61 +5,152 @@ version: 2
55
updates:
66
# Enable version updates for npm
77
- package-ecosystem: "npm"
8-
# Look for `package.json` and `lock` files in the `root` directory
8+
groups:
9+
typescript:
10+
patterns:
11+
- "@voxpelli/tsconfig"
12+
- "@types/node"
13+
- "typescript"
14+
preact:
15+
patterns:
16+
- "preact"
17+
- "preact-render-to-string"
18+
- "htm"
919
directory: "/"
10-
# Check the npm registry for updates every day (weekdays)
1120
schedule:
1221
interval: "daily"
1322
- package-ecosystem: "npm"
1423
directory: "/examples/basic"
24+
groups:
25+
typescript:
26+
patterns:
27+
- "@voxpelli/tsconfig"
28+
- "@types/node"
29+
- "typescript"
1530
schedule:
1631
interval: "daily"
1732
- package-ecosystem: "npm"
1833
directory: "/examples/css-modules/"
34+
groups:
35+
typescript:
36+
patterns:
37+
- "@voxpelli/tsconfig"
38+
- "@types/node"
39+
- "typescript"
1940
schedule:
2041
interval: "daily"
2142
- package-ecosystem: "npm"
2243
directory: "/examples/default-layout/"
44+
groups:
45+
typescript:
46+
patterns:
47+
- "@voxpelli/tsconfig"
48+
- "@types/node"
49+
- "typescript"
2350
schedule:
2451
interval: "daily"
2552
- package-ecosystem: "npm"
2653
directory: "/examples/esbuild-settings"
54+
groups:
55+
typescript:
56+
patterns:
57+
- "@voxpelli/tsconfig"
58+
- "@types/node"
59+
- "typescript"
2760
schedule:
2861
interval: "daily"
2962
- package-ecosystem: "npm"
3063
directory: "/examples/markdown-settings/"
64+
groups:
65+
typescript:
66+
patterns:
67+
- "@voxpelli/tsconfig"
68+
- "@types/node"
69+
- "typescript"
3170
schedule:
3271
interval: "daily"
3372
- package-ecosystem: "npm"
3473
directory: "/examples/nested-dest/"
74+
groups:
75+
typescript:
76+
patterns:
77+
- "@voxpelli/tsconfig"
78+
- "@types/node"
79+
- "typescript"
3580
schedule:
3681
interval: "daily"
3782
- package-ecosystem: "npm"
3883
directory: "/examples/preact-isomorphic/"
84+
groups:
85+
typescript:
86+
patterns:
87+
- "@voxpelli/tsconfig"
88+
- "@types/node"
89+
- "typescript"
3990
schedule:
4091
interval: "daily"
4192
- package-ecosystem: "npm"
4293
directory: "/examples/react/"
94+
groups:
95+
typescript:
96+
patterns:
97+
- "@voxpelli/tsconfig"
98+
- "@types/node"
99+
- "typescript"
100+
react:
101+
patterns:
102+
- "react"
103+
- "react-dom"
43104
schedule:
44105
interval: "daily"
45106
- package-ecosystem: "npm"
46107
directory: "/examples/string-layouts/"
108+
groups:
109+
typescript:
110+
patterns:
111+
- "@voxpelli/tsconfig"
112+
- "@types/node"
113+
- "typescript"
47114
schedule:
48115
interval: "daily"
49116
- package-ecosystem: "npm"
50117
directory: "/examples/tailwind/"
118+
groups:
119+
typescript:
120+
patterns:
121+
- "@voxpelli/tsconfig"
122+
- "@types/node"
123+
- "typescript"
51124
schedule:
52125
interval: "daily"
53126
- package-ecosystem: "npm"
54127
directory: "/examples/type-stripping/"
128+
groups:
129+
typescript:
130+
patterns:
131+
- "@voxpelli/tsconfig"
132+
- "@types/node"
133+
- "typescript"
55134
schedule:
56135
interval: "daily"
57136
- package-ecosystem: "npm"
58137
directory: "/examples/uhtml-isomorphic/"
138+
groups:
139+
typescript:
140+
patterns:
141+
- "@voxpelli/tsconfig"
142+
- "@types/node"
143+
- "typescript"
59144
schedule:
60145
interval: "daily"
61146
- package-ecosystem: "npm"
62147
directory: "/examples/worker-examples/"
148+
groups:
149+
typescript:
150+
patterns:
151+
- "@voxpelli/tsconfig"
152+
- "@types/node"
153+
- "typescript"
63154
schedule:
64155
interval: "daily"
65156
# Enable version updates for pnpm

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ DOMStack provides a few project conventions around esbuild ande Node.js that let
1111

1212
It's fast to learn, quick to build with, and performs better than you are used to.
1313

14+
`domstack` currently ships a static site generator tool which is great for building static wesbites, and static PWA/MPAs.
15+
There is an experimental fastify plugin in the works that will unlock dynamic hypermedia webapps using the same project structure.
16+
1417
```console
1518
npm install @domstack/static
1619
```

0 commit comments

Comments
 (0)