1.0.5 • Published 3 years ago
backdot-cli v1.0.5
Backdot CLI
CLI tool to help the development of the backdot ecommerce solution.
Current commands:
create
must be executed on the root of the project
$ backli create TestComponent
- TestComponent.tsx
import { s } from "./TestComponent.module.css";
export const TestComponent = () => {
return <div className={s.delete}>hello from TestComponent</div>;
};
- TestComponent.module.css
.delete {
@apply text-lg;
}
- index.ts
export * from "./TestComponent";
by willbe©