0.2.2 • Published 4 years ago
@fe-chef/component v0.2.2
@fe-chef/component
Create Component Skeleton in Lightning speed.
Below are useful commands.
Refer sample definition file - definitions.txt
Create component from definition file.
npx @fe-chef/component -f definitions.txt
npx @fe-chef/component --definitionFile=definitions.txtCreate component in TypeScript format
npx @fe-chef/component -f definitions.txt -e tsx
npx @fe-chef/component --definitionFile=definitions.txt --extension=tsxCreate component in JSX format
npx @fe-chef/component -f definitions.txt -e jsx
npx @fe-chef/component --definitionFile=definitions.txt --extension=jsxCreate component from existing location.
npx @fe-chef/component -f definitions.txt -l someDir/subDir1/subDir2
npx @fe-chef/component --definitionFile=definitions.txt --location=someDir/subDir1/subDir2Create component in same path
npx @fe-chef/component -f definitions.txt -l .
npx @fe-chef/component --definitionFile=definitions.txt --location=.Create component in with CSS file
npx @fe-chef/component -f definitions.txt -s css
npx @fe-chef/component --definitionFile=definitions.txt --style=cssCreate component in with SASS file
npx @fe-chef/component -f definitions.txt -s sass
npx @fe-chef/component --definitionFile=definitions.txt --style=scssCreate component in with Styled file
npx @fe-chef/component -f definitions.txt -s styled
npx @fe-chef/component --definitionFile=definitions.txt --style=styled