Skip to content

Commit

Permalink
Node.js version dependency denoted
Browse files Browse the repository at this point in the history
  • Loading branch information
zrwusa committed Jul 3, 2023
1 parent dd1047d commit 51360b1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,17 @@ yarn next

2."The remaining 10 percent of the code accounts for the other 90 percent of the development time."--— Tom Cargill, Bell Labs.


<table>
<thead>
<tr>
<td>Scope</td><td>Theory</td>
</tr>
</thead>
<tr>
<td>Javascript</td>
<td>IIFEs to encapsulate some code within a local scope so that variables declared in it do not leak to the global scope.</td>
</tr>
</table>
## Architecture benefits
Architecture is necessary to save time during the development process, to maintain the system’s testability and extensibility over a long development period.

Expand All @@ -284,3 +294,9 @@ yarn next
2.test:simplification of code testing (you will need fewer testers and have fewer missed “production bugs”);

3.developer:easier to involve new developers into the project.


# Environment/Dependencies
## Node.js

version v15.0.1
2 changes: 1 addition & 1 deletion src/components/ThemePicker/ThemePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ThemePicker: React.FC<Omit<PickerSelectProps, 'onValueChange' | 'it
});

const handleValueChange = async (itemValue: ThemeName) => {
console.log('---4?handleValueChange', itemValue);
// console.log('---4?handleValueChange', itemValue);
// todo always be invoked 4 times
if (itemValue) {
await changeTheme(itemValue);
Expand Down

0 comments on commit 51360b1

Please sign in to comment.