Vite project template scaffolding for Webxdc development.
With NPM:
$ npm create @webxdc/vite-plugins@latestWith PNPM:
$ pnpm create @webxdc/vite-pluginsWith Yarn:
$ yarn create @webxdc/vite-pluginsThen follow the prompts!
You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Webxdc + TypeScript project, run:
# npm 7+, extra double-dash is needed:
npm create @webxdc/vite-plugins@latest my-app -- --template vanilla-ts
# pnpm
pnpm create @webxdc/vite-plugins my-app --template vanilla-ts
# yarn
yarn create @webxdc/vite-plugins my-app --template vanilla-tsCurrently supported template presets include:
vanillavanilla-ts
You can use . for the project name to scaffold in the current directory.
This project is based on create-vite.