Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit ed218da

Browse files
committed
Fixed some dependecies declaration 🚀
1 parent 66ab2ce commit ed218da

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

_drafts/2019-07-28-clean-code-functions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,7 @@ Do you see how much more readable and clear it is the second version of the `mak
116116

117117
Let's see what Uncle Bob says about the command query separation:
118118

119-
> Functions should either do something or answer something, but not both. Either your function should change the state
120-
of an object, or it should return some information about that object. Doing both often leads to confusion.
119+
> Functions should either do something or answer something, but not both. Either your function should change the state of an object, or it should return some information about that object. Doing both often leads to confusion.
121120
122121
I think there's nothing else to ad to this point :stuck_out_tongue:.
123122

_posts/2017-05-10-about-me.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ in love with **Swift** and **Objective-C**. This was also the time when started
3939

4040
{% include blog-lazy-image.html description="apple microsoft linux" width="1286" height="400" src="/assets/images/posts/apple-microsoft-linux.jpg" %}
4141

42-
In 2013 I started my master degree, where I specialized in **computer graphics**, the computer science field I love the most.
42+
In 2013 I started my master degree, where I studied in **computer graphics**, the computer science field I love the most.
4343
This is why I also fell in love with **C++**. I also know **Javascript** and **TypeScript**.
4444
If you want to read other details about my computer science journey, see my [homepage](/ "homepage").
4545
I consider myself an experienced developer. I enjoy so much my work. I consider it as a way to challenge myself every day and

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"gulp": "4.0.0",
5454
"gulp-concat": "2.6.1",
5555
"gulp-eslint": "5.0.0",
56-
"gulp-imagemin": "^5.0.3",
56+
"gulp-imagemin": "5.0.3",
5757
"gulp-rev-append": "0.1.8",
5858
"gulp-sass": "4.0.1",
5959
"gulp-uglify": "3.0.0",
@@ -66,7 +66,7 @@
6666
"detector-webgl": "2.0.0",
6767
"intersection-observer": "0.7.0",
6868
"three": "0.104.0",
69-
"three-orbitcontrols": "^2.102.1",
69+
"three-orbitcontrols": "2.102.1",
7070
"three-ply-loader": "1.0.0"
7171
}
7272
}

0 commit comments

Comments
 (0)