Skip to content

Commit c40a14e

Browse files
committed
some useless changes
2 parents 1ff2512 + 162f060 commit c40a14e

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,26 +45,26 @@
4545
## How To Use ❓
4646

4747
- Now You Have Been Setup Everything
48-
- You Can Visit Functionalty.js Site From <a>Here</a>
48+
- You Can Visit Functionalty.js Site From <a href="https://functionalty.netlify.app/">Here</a>
4949
- Or This is A Quick Start From Here
5050

5151
# <p align="center">Here Is What We Are Working On 🤞</p>
5252

5353
1. Adding Logo
5454
2. Converting functionalty.js File Into TypeScript File
55-
3. Making File Supported By All Of Search Engines
55+
3. ✔️ Making File Supported By All Of Search Engines
5656
4. ✔️ Making File Compressed
5757
5. ✔️ Making File Light Weight
5858
6. Handling Function Errors
5959
7. Making A Documentation Website
60-
8. Dark And Write Theme Website
60+
8. Adding Dark And White Theme In Website
6161
9. Adding New Functions
6262
10. Making npm Package For Installation
6363
11. Making a CDN Importing
6464

6565
# <p align="center">Feel Free To Contribute To This Repositry 🤝</p>
6666

67-
## To Get Started Contributing 🔥
67+
## To Get Started Contributing
6868

6969
- First Clone The Repository
7070

@@ -78,7 +78,7 @@
7878
npm install
7979
```
8080

81-
- Then Run The Website In Your Locahost Server
81+
- Run Website In Your Locahost Server With Live Reload
8282

8383
```node
8484
gulp watch

gulpfile.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ gulp.task("styles", () => {
2727
return gulp
2828
.src(["./project/css/*.scss", "./project/css/**/*.scss"])
2929
.pipe(sass())
30-
.pipe(prefix("last 2 versions"))
30+
.pipe(prefix("last 4 versions"))
3131
.pipe(concat("style.css"))
3232
.pipe(minify())
3333
.pipe(gulp.dest("./website/css"))
@@ -100,6 +100,3 @@ gulp.task("watch", () => {
100100

101101
gulp.watch("./project/js/functionalty.js", gulp.series("functionalty"));
102102
});
103-
104-
// Setting Default Task
105-
// gulp.set("default", ["watch"]);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "functionalty",
2+
"name": "functionality",
33
"version": "1.0.0",
44
"description": "- This Is A JavaScript Library To Make Your Work Easier/Faster,<br />\r You Can See Functionalty.js Website From Here\r - Born In May 5 / 16 / 2022",
55
"main": "functionalty.js",

project/js/loading.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
let loading = document.querySelector(".loading-wrapper");
2-
window.onload = function () {
3-
setTimeout(function () {
4-
loading.style.display = "none";
5-
}, 2000);
6-
};
1+
// /*
2+
// let loading = document.querySelector(".loading-wrapper");
3+
// window.onload = function () {
4+
// setTimeout(function () {
5+
// loading.style.display = "none";
6+
// }, 2000);
7+
// };
8+
// */

0 commit comments

Comments
 (0)