Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wiki countries lab Nawel Diana and sowjanya #2085

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b4339ee
feat: add learning goals section
ross-u Apr 18, 2023
45c227d
feat: add axios as a starter code dependency
ross-u Apr 24, 2023
067da34
feat: update html example code
ross-u Apr 24, 2023
805a37e
feat: improve and simplify lab instructions
ross-u Apr 24, 2023
154fcd2
chore: update html example code
ross-u Apr 24, 2023
bfbf8a0
feat: remove countries.json file
ross-u Apr 24, 2023
aa919cd
feat: update starter code
ross-u Apr 24, 2023
cb9ee02
chore: create backup branch for migration
ross-u Apr 25, 2023
1b5cc40
chore: update package.json with new dependencies and scripts
ross-u Apr 25, 2023
06de8d1
feat: add vite configuration
ross-u Apr 25, 2023
45469f0
chore: update eslint configuration
ross-u Apr 25, 2023
ae27d02
refactor: update starter code to use vite react boilerplate
ross-u Apr 25, 2023
c38c062
chore: install new dependencies
ross-u Apr 25, 2023
f3649fd
test: verify new setup with vite
ross-u Apr 25, 2023
633b36b
feat: add tests for mandatory iterations
ross-u May 1, 2023
cbf0006
feat: update starter code
ross-u May 1, 2023
309e8c9
chore: add axios as a dependency to the starter code
ross-u May 1, 2023
4eea0e1
feat: add test for Navbar component
ross-u May 1, 2023
2b058ef
fix: update instructions, improve style, and check grammar
ross-u May 1, 2023
d4435e2
fix: remove default styles
ross-u May 1, 2023
f140e20
feat: add section "test your code" and update instructions
ross-u May 3, 2023
7719eb7
review
sandrabosk May 4, 2023
560fd25
Merge pull request #1 from ironhack-labs/migrate-to-vite
ross-u May 16, 2023
0eee0ef
done iteration 0 ,1 and two
Nawelchafi Mar 16, 2024
41c6318
done till iteration 2
Nawelchafi Mar 19, 2024
738d1ff
rebuilding details page
Nawelchafi Mar 21, 2024
124950f
done lab
Nawelchafi Mar 21, 2024
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,
},
};
41 changes: 21 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# 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

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 0 additions & 3 deletions .prettierrc

This file was deleted.

Loading