Skip to content

Commit

Permalink
Update start and build scripts in package.json to include completion …
Browse files Browse the repository at this point in the history
…messages
  • Loading branch information
Jagoda11 committed Jun 17, 2024
1 parent c73f94e commit e3457be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ The app features modern web development tools and best practices, including Webp
## 🚀 Initial Setup

```bash
git clone https://github.com/your-username/pokemon-react.git
git clone https://github.com/Bannerflow/frontend-codetest-81960260.git
```

cd pokemon-react
cd frontend-codetest-81960260

```bash
npm install
Expand All @@ -61,7 +61,7 @@ For detailed project instructions, please refer to the [INSTRUCTIONS.md](./INSTR

To run these scripts, use `npm run <script-name>`:

- `start`: 🚀 Builds the code and starts the application.
- `start`: 🚀 Builds the code and starts the application at `http://localhost:3000.`
- `build`: 🔨 Compiles the TypeScript code
- `test`: 🧪 Runs tests using Jest and generates a coverage report.
- `format`: 🖋️ Formats the code using Prettier.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "A template for TypeScript/JavaScript projects",
"main": "src/index.tsx",
"scripts": {
"start": "echo '🚀 Starting the app...' && webpack serve --config webpack.config.cjs",
"build": "echo '🔨 Building the app...' && webpack --config webpack.config.cjs",
"start": "echo '🚀 Starting the app...' && webpack serve --config webpack.config.cjs && echo '🌟✨ App is up and running! Visit http://localhost:3000 ✨'",
"build": "echo '🔨 Building the app...' && webpack --config webpack.config.cjs && echo '🏗️✨ Build completed! Your app is ready! ✨'",
"test": "echo '🧪 Running tests...' && jest --config jest.config.cjs --coverage --verbose",
"format": "echo '🖋️ Formatting code...' && prettier --write . && echo '✨🎨 Formatting completed! Your code is now beautifully formatted! ✨'",
"lint": "echo '🧹 Linting code...' && eslint . --ext .js,.ts,.tsx --ignore-path .eslintignore && echo '✅ Linting completed!'",
Expand Down

0 comments on commit e3457be

Please sign in to comment.