@watheia/hello.hello.extensions.snowpack
Version:
14 lines (11 loc) • 313 B
text/typescript
import { MainRuntime } from '@teambit/cli';
import { SnowpackAspect } from './snowpack.aspect';
export class SnowpackMain {
static slots = [];
static dependencies = [];
static runtime = MainRuntime;
static async provider() {
return new SnowpackMain();
}
}
SnowpackAspect.addRuntime(SnowpackMain);