Function
moduleCase
(seed: PackageSeed, description: string, casePath: string, features: string[])
Source from the content-addressed store, hash-verified
| 257 | } |
| 258 | |
| 259 | function moduleCase(seed: PackageSeed, description: string, casePath: string, features: string[]): CompatCase { |
| 260 | return { |
| 261 | category: seed.category, |
| 262 | description, |
| 263 | expect: "module", |
| 264 | features, |
| 265 | package: seed.name, |
| 266 | path: casePath, |
| 267 | }; |
| 268 | } |
| 269 | |
| 270 | function jsonCase(seed: PackageSeed, description: string, casePath: string, features: string[]): CompatCase { |
| 271 | return { |
Tested by
no test coverage detected