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
c303e68
feat: iteration 1
rafacruiz Nov 30, 2025
564e06f
done iteration 2
rafacruiz Nov 30, 2025
988a3fe
done iteration 3
rafacruiz Nov 30, 2025
11619ca
done iteration 4
rafacruiz Nov 30, 2025
9bb39eb
done iteration 5
rafacruiz Nov 30, 2025
83893cc
done iteration 6 and 7
rafacruiz Nov 30, 2025
66ab2d0
done iteration 8
rafacruiz Nov 30, 2025
2be4ba8
done iteration 9
rafacruiz Nov 30, 2025
c5d5cab
fix: @ in handle
rafacruiz Nov 30, 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