Skip to content

Commit

Permalink
fix: slide path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroidoruido committed May 27, 2024
1 parent 08d1564 commit 93483e8
Show file tree
Hide file tree
Showing 10 changed files with 1,493 additions and 7 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,21 @@ Workshops are in directory `steps` :
### Start a lab

```bash
cd steps
npm install
npm run client -- exo01
# for the solution
npm run client -- exo01-solution
```

### Start the slide

```bash
cd docs
npm install
npm run start
```

## Contributing

### Contributing Guidelines
Expand Down
15 changes: 8 additions & 7 deletions docs/scripts/slides.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function schoolSlides() {
'00-school/10-speaker-jta.md',
'00-school/10-speaker-rto.md',
'00-school/11-tour-de-table.md',
'00-school/20-what-we-will-do',
'00-school/20-what-we-will-do.md',
];
}

Expand Down Expand Up @@ -51,10 +51,11 @@ function nodesElementsComponentsSlides() {
function conditionnalDisplaySlides() {
return [
'02-nodes-elements-components/30-conditionnal-display.md',
'02-nodes-elements-components/31-conditionals-if-switch.md',
'02-nodes-elements-components/32-conditionals-variable.md',
'02-nodes-elements-components/33-conditionals-logical.md',
'02-nodes-elements-components/34-conditionals-ternary.md',
'02-nodes-elements-components/31-just-expression.md',
'02-nodes-elements-components/32-conditionals-if-switch.md',
'02-nodes-elements-components/33-conditionals-variable.md',
'02-nodes-elements-components/34-conditionals-logical.md',
'02-nodes-elements-components/35-conditionals-ternary.md',
];
}

Expand All @@ -63,7 +64,7 @@ function nodesElementsComponentsSlides() {
'02-nodes-elements-components/40-lists.md',
'02-nodes-elements-components/41-list-use-map.md',
'02-nodes-elements-components/42-list-key-warning.md',
'02-nodes-elements-components/44-list-key-explaination.md',
'02-nodes-elements-components/43-list-key-schema.md',
'02-nodes-elements-components/44-list-key-explaination.md',
'02-nodes-elements-components/45-react-children.md',
];
Expand Down Expand Up @@ -150,7 +151,7 @@ function lifecycleEtDomSlides() {
return [
'04-lifecycle-et-dom/20-refs.md',
'04-lifecycle-et-dom/21-refs-with-interval.md',
'04-lifecycle-et-dom/21-refs-with-dom.md',
'04-lifecycle-et-dom/22-refs-with-dom.md',
];
}
function refsLabSlides() {
Expand Down
Loading

0 comments on commit 93483e8

Please sign in to comment.