Skip to content

Commit 1c65a01

Browse files
committed
fix: Update package version and dependencies
- Update package.json and package-lock.json to version 1.2.10 - Add react-bootstrap as dependency for bootstrap css
1 parent cc4514a commit 1c65a01

4 files changed

Lines changed: 4 additions & 30 deletions

File tree

README.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -86,32 +86,6 @@ create-vrtw
8686
- Deletes: `src/App.css`, all of `public/`
8787
- Cleans/minimizes: `src/App.jsx` / `src/App.tsx` and `src/index.css`
8888
8. Your starting `App` component matches your CSS framework
89-
9. Shows next steps — just `cd` and `npm run dev`!
90-
91-
## Example File Structure
92-
93-
```
94-
my-app/
95-
├── public/
96-
├── src/
97-
│ ├── App.jsx / App.tsx # Cleaned minimal
98-
│ ├── index.css # Present if Tailwind; empty if Bootstrap/None
99-
│ ├── main.jsx / main.tsx # Imports Bootstrap CSS if chosen
100-
│ └── ...
101-
├── vite.config.js / vite.config.ts # Tailwind Plugin integrated if using Tailwind
102-
├── tsconfig.json # Only for TypeScript projects
103-
└── ...
104-
```
105-
106-
## Example App Component (After Setup)
107-
108-
```jsx
109-
function App() {
110-
return <div>Hello Vite + React + TailwindCSS!</div>;
111-
}
112-
113-
export default App;
114-
```
11589

11690
## Optional Extras
11791

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-vrtw",
3-
"version": "1.2.9",
3+
"version": "1.2.10",
44
"description": "Zero-config CLI to scaffold a modern Vite + React (TS/JS) project with Tailwind CSS v4, Bootstrap 5, or none, plus optional extras: react-icons, React Router, Redux Toolkit, Zustand, Axios – and auto-cleaned boilerplate.",
55
"author": "Avijit Dey <deyavijit134@gmail.com>",
66
"main": "index.js",

utils/setupCssFramework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function setupCssFramework({
3131
);
3232
await fsp.writeFile(indexCssPath, indexCssContent, "utf-8");
3333
} else if (cssFramework === "bootstrap") {
34-
await installDeps(pkg, false, "bootstrap");
34+
await installDeps(pkg, false, "bootstrap", "react-bootstrap", );
3535

3636
const mainFileExt = language === "ts" ? "tsx" : "jsx";
3737
const mainFile = path.join(process.cwd(), "src", `main.${mainFileExt}`);

0 commit comments

Comments
 (0)