Skip to content

Commit 9b2459a

Browse files
committed
Dependabot groups
1 parent a91b488 commit 9b2459a

File tree

2 files changed

+87
-2
lines changed

2 files changed

+87
-2
lines changed

.github/dependabot.yml

Lines changed: 84 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,61 +5,143 @@ 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"
914
directory: "/"
10-
# Check the npm registry for updates every day (weekdays)
1115
schedule:
1216
interval: "daily"
1317
- package-ecosystem: "npm"
1418
directory: "/examples/basic"
19+
groups:
20+
typescript:
21+
patterns:
22+
- "@voxpelli/tsconfig"
23+
- "@types/node"
24+
- "typescript"
1525
schedule:
1626
interval: "daily"
1727
- package-ecosystem: "npm"
1828
directory: "/examples/css-modules/"
29+
groups:
30+
typescript:
31+
patterns:
32+
- "@voxpelli/tsconfig"
33+
- "@types/node"
34+
- "typescript"
1935
schedule:
2036
interval: "daily"
2137
- package-ecosystem: "npm"
2238
directory: "/examples/default-layout/"
39+
groups:
40+
typescript:
41+
patterns:
42+
- "@voxpelli/tsconfig"
43+
- "@types/node"
44+
- "typescript"
2345
schedule:
2446
interval: "daily"
2547
- package-ecosystem: "npm"
2648
directory: "/examples/esbuild-settings"
49+
groups:
50+
typescript:
51+
patterns:
52+
- "@voxpelli/tsconfig"
53+
- "@types/node"
54+
- "typescript"
2755
schedule:
2856
interval: "daily"
2957
- package-ecosystem: "npm"
3058
directory: "/examples/markdown-settings/"
59+
groups:
60+
typescript:
61+
patterns:
62+
- "@voxpelli/tsconfig"
63+
- "@types/node"
64+
- "typescript"
3165
schedule:
3266
interval: "daily"
3367
- package-ecosystem: "npm"
3468
directory: "/examples/nested-dest/"
69+
groups:
70+
typescript:
71+
patterns:
72+
- "@voxpelli/tsconfig"
73+
- "@types/node"
74+
- "typescript"
3575
schedule:
3676
interval: "daily"
3777
- package-ecosystem: "npm"
3878
directory: "/examples/preact-isomorphic/"
79+
groups:
80+
typescript:
81+
patterns:
82+
- "@voxpelli/tsconfig"
83+
- "@types/node"
84+
- "typescript"
3985
schedule:
4086
interval: "daily"
4187
- package-ecosystem: "npm"
4288
directory: "/examples/react/"
89+
groups:
90+
typescript:
91+
patterns:
92+
- "@voxpelli/tsconfig"
93+
- "@types/node"
94+
- "typescript"
4395
schedule:
4496
interval: "daily"
4597
- package-ecosystem: "npm"
4698
directory: "/examples/string-layouts/"
99+
groups:
100+
typescript:
101+
patterns:
102+
- "@voxpelli/tsconfig"
103+
- "@types/node"
104+
- "typescript"
47105
schedule:
48106
interval: "daily"
49107
- package-ecosystem: "npm"
50108
directory: "/examples/tailwind/"
109+
groups:
110+
typescript:
111+
patterns:
112+
- "@voxpelli/tsconfig"
113+
- "@types/node"
114+
- "typescript"
51115
schedule:
52116
interval: "daily"
53117
- package-ecosystem: "npm"
54118
directory: "/examples/type-stripping/"
119+
groups:
120+
typescript:
121+
patterns:
122+
- "@voxpelli/tsconfig"
123+
- "@types/node"
124+
- "typescript"
55125
schedule:
56126
interval: "daily"
57127
- package-ecosystem: "npm"
58128
directory: "/examples/uhtml-isomorphic/"
129+
groups:
130+
typescript:
131+
patterns:
132+
- "@voxpelli/tsconfig"
133+
- "@types/node"
134+
- "typescript"
59135
schedule:
60136
interval: "daily"
61137
- package-ecosystem: "npm"
62138
directory: "/examples/worker-examples/"
139+
groups:
140+
typescript:
141+
patterns:
142+
- "@voxpelli/tsconfig"
143+
- "@types/node"
144+
- "typescript"
63145
schedule:
64146
interval: "daily"
65147
# 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)