Skip to content

Commit

Permalink
Update lasagna in javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgoettschkes committed Oct 3, 2023
1 parent 685cb90 commit b1157aa
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 22,722 deletions.
8 changes: 5 additions & 3 deletions javascript/lasagna/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules
yarn-error.log

/node_modules
/bin/configlet
/bin/configlet.exe
/pnpm-lock.yaml
/yarn.lock
4 changes: 2 additions & 2 deletions javascript/lasagna/HELP.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ It's possible to submit an incomplete solution which allows you to:
If you'd like help solving the exercise, check the following pages:

- The [JavaScript track's documentation](https://exercism.org/docs/tracks/javascript)
- [Exercism's support channel on gitter](https://gitter.im/exercism/support)
- The [JavaScript track's programming category on the forum](https://forum.exercism.org/c/programming/javascript)
- [Exercism's programming category on the forum](https://forum.exercism.org/c/programming/5)
- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)

Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.

To get help if you're having trouble, you can use one of the following resources:

- [Gitter](https://gitter.im/exercism/support) is Exercism's Gitter room; go here to get support and ask questions if you face any issues with downloading or submitting your exercises.
- [/r/javascript](https://www.reddit.com/r/javascript) is the Javascript subreddit.
- [StackOverflow](https://stackoverflow.com/questions/tagged/javascript+exercism) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.
- [Github issue tracker](https://github.com/exercism/javascript/issues) is where we track our development and maintainance of Javascript exercises in exercism. But if none of the above links help you, feel free to post an issue here.
6 changes: 3 additions & 3 deletions javascript/lasagna/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ add(MY_VALUE, 5);

## Instructions

Lucian's girlfriend is on her way home and he hasn't cooked their anniversary dinner!
Lucian's girlfriend is on her way home, and he hasn't cooked their anniversary dinner!

In this exercise, you're going to write some code to help Lucian cook an exquisite lasagna from his favorite cook book.
In this exercise, you're going to write some code to help Lucian cook an exquisite lasagna from his favorite cookbook.

You have four tasks, all related to the time spent cooking the lasagna.
You have four tasks related to the time spent cooking the lasagna.

## 1. Define the expected oven time in minutes

Expand Down
15 changes: 2 additions & 13 deletions javascript/lasagna/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
useBuiltIns: 'entry',
corejs: '3.20',
},
],
],
plugins: ['@babel/plugin-syntax-bigint'],
presets: ['@exercism/babel-preset-javascript'],
plugins: [],
};
Loading

0 comments on commit b1157aa

Please sign in to comment.