Skip to content

Commit

Permalink
Merge pull request #198 from qwikerx/feat/getting-started-deps
Browse files Browse the repository at this point in the history
feat: add flowbite-qwik-icons as deps
  • Loading branch information
xmimiex authored Oct 10, 2024
2 parents 78b1b18 + 2b4b6fa commit 2542203
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default component$(() => {
<div>
<Heading tag="h3">Install Flowbite Qwik</Heading>
<p>Install Flowbite Qwik by running the following command in your project directory:</p>
<CodeBlock language="bash" expandable={false} content="npm install flowbite-qwik" />
<CodeBlock language="bash" expandable={false} content="npm install flowbite-qwik flowbite-qwik-icons" />
<p>
Add the Flowbite Qwik flowbite configuration in your <em>tailwind.config.js</em>
</p>
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flowbite-qwik-cli",
"version": "0.0.5",
"version": "0.0.6",
"description": "This is a CLI tool to setup flowbite qwik into your project",
"main": "bin/init.cjs",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ async function installFlowbiteQwik(): Promise<void> {
const loader = spinner()

loader.start('Installing flowbite-qwik...')
await installDependency(packageManager, 'flowbite-qwik flowbite')
await installDependency(packageManager, 'flowbite-qwik flowbite flowbite-qwik-icons')
loader.stop('Flowbite Qwik installed! 🎉')

const hasTailwindInstalled = await detectTailwindCSS()
Expand Down

0 comments on commit 2542203

Please sign in to comment.