Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e8e35f1
chore: create backup branch for migration
ross-u Apr 25, 2023
b17fbe7
chore: update package.json with new dependencies and scripts
ross-u Apr 25, 2023
e20ef29
chore: bump version to 3.0.0 for vite migration
ross-u Apr 25, 2023
9ce6948
feat: add vite configuration
ross-u Apr 25, 2023
766bf61
chore: update eslint configuration
ross-u Apr 25, 2023
3f906dc
refactor: update starter code to use vite react boilerplate
ross-u Apr 25, 2023
9577aab
chore: install new dependencies
ross-u Apr 25, 2023
500a4c1
test: verify new setup with vite
ross-u Apr 25, 2023
6506f41
feat: add tests for all react components
ross-u Apr 25, 2023
2415ba7
fix: update README and starter code
ross-u Apr 25, 2023
e6fe249
feat: add section "test your code"
ross-u May 3, 2023
344c664
feat: simplify and improve lab instructions
ross-u May 3, 2023
fdd81a7
feat: update tests for user component
ross-u May 3, 2023
9f688cf
Merge pull request #1 from ironhack-labs/migrate-to-vite
ross-u May 16, 2023
450f677
Update README.md
ross-u May 16, 2023
cd09f42
fix: add missing data-testid attribute to <i> tags
ross-u Jul 26, 2023
c34ba1f
Merge pull request #7 from ironhack-labs/uros/fix/action-component-tests
ironhack-edu Jul 27, 2023
ec8551c
First commit
Darkheadbanger Dec 9, 2025
ce1124f
fix: add missing stylesheet link for Font Awesome icons
Darkheadbanger Dec 9, 2025
4ba98fc
fix: adjust margin for actions container in CSS
Darkheadbanger Dec 9, 2025
1fb4193
fix: pass tweet data as props to Tweet component
Darkheadbanger Dec 9, 2025
b898730
feat: add initial component files for PrProfileImage, Actions, Messag…
Darkheadbanger Dec 9, 2025
896bd1e
feat: add Actions, Message, Timestamp, and User components for tweet …
Darkheadbanger Dec 9, 2025
894900c
feat: implement Actions component and integrate ProfileImage componen…
Darkheadbanger Dec 9, 2025
81c49eb
refactor: update props in Message, ProfileImage, Timestamp, and User …
Darkheadbanger Dec 9, 2025
3476856
feat: render all tweets dynamically in App component
Darkheadbanger Dec 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
env: { browser: true, es2020: true, node: true },
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
],
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
settings: { react: { version: "18.2" } },
plugins: ["react-refresh"],
rules: {
"react-refresh/only-export-components": "warn",
"react/prop-types": 0,
},
};
39 changes: 20 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

package-lock.json
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Loading