create-l
v2.5.0
Published
TypeScript Library Scaffold.
Downloads
37
Maintainers
Readme
create-l
TypeScript Library Scaffold.
Visit https://create-l.keke.cc to get a live preview.
Using
# npm
$ npm create l
# yarn
$ yarn create l
# pnpm
$ pnpm create l
# bun
$ bunx create-l
Then you need to answer a series of questions to create the template.
You can also directly specify the project name and the template to use via additional command line options.
$ npm create l --name <projectName> --bundle <unbuild | tsup | vite>
The default project name is my-lib
and the default bundle tool is unbuild
if no project name or bundle tool is specified.
Currently supported template presets include:
- unbuild
- tsup
- vite
You can use .
for the project name to scaffold in the current directory.
[!IMPORTANT] Since v2.0.0,
monorepo
andVue SFC
templates have been removed. If you still have a need to use them, you can use cli withlegacy
tag
# npm
$ npm create l@legacy
# yarn
$ yarn create l@legacy
# pnpm
$ pnpm create l@legacy
# bun
$ bunx create-l@legacy