Skip to content

Commit 8d0af45

Browse files
committed
Let's drop the ES6 directory
1 parent 8c9b7e9 commit 8d0af45

25 files changed

+21
-23
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ coverage
1010
build/Release
1111
node_modules
1212
*.module-cache
13-
src/es6
13+
src
1414
exercises

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can run a webserver and see your changes live in your web browser:
3131
1. Work on the code found in the `exercises` directory and run the tests to see if you did everything right.
3232
2. You need to do the exercises in the given order.
3333
3. Try to not peek at the test files! They contain spoilers.
34-
4. To run the tests, use `npm run test-es6`. To automatically run tests when your code changes, use `npm run watch`.
34+
4. To run the tests, use `npm run test`. To automatically run tests when your code changes, use `npm run watch`.
3535

3636
## Join our newsletter
3737

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

koans/es6/05-Challenge-GroceryList-part-4.jsx renamed to koans/05-Challenge-GroceryList-part-4.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var React = require("react");
3333
// Hint: There are no tests for this extra task. You need to do them
3434
// yourself. You can perform manual-testing (meh.)
3535
// Or try to create your own tests.
36-
// Check out `test/es6/05-Challange-GroceryList.js` for tests to this part.
36+
// Check out `test/05-Challange-GroceryList.js` for tests to this part.
3737
//
3838
// Extra Task: Extract creation (`addGroceryItem`) of grocery to external service.
3939

0 commit comments

Comments
 (0)