Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b847065
setup logo and descripted comment
alguerocode Feb 12, 2022
22a4c34
setup: get start building home page
alguerocode Feb 12, 2022
3e7a81d
update
alguerocode Feb 17, 2022
c10effa
update home page
alguerocode Feb 18, 2022
d8a4d07
feat: redesign project structure
alguerocode Feb 18, 2022
ce56a94
update: update and delete feature component
alguerocode Feb 18, 2022
2b1ecd2
new: add github CI action to project
alguerocode Feb 18, 2022
3389208
feat: add eslint prettier prety-quick
alguerocode Feb 18, 2022
8a8e469
update: add content data and fetch data from content
alguerocode Feb 21, 2022
608b799
setup cards in home page"
alguerocode Feb 22, 2022
8b08212
feat: add responsive design in homepage page with more cards descript…
alguerocode Feb 23, 2022
fb8ce93
feat: add all cards descriptions
alguerocode Feb 25, 2022
c0484ad
update second hero button to buy me a coffe
alguerocode Feb 26, 2022
213499d
feat: home page design completed
alguerocode Feb 26, 2022
345eca1
edit home pages button and add some docs
alguerocode Feb 26, 2022
6b59f8e
new: add all docs list in table of content
alguerocode Feb 26, 2022
97790b5
new: new docs files
alguerocode Feb 27, 2022
367b744
feat: add complete home page
alguerocode Feb 27, 2022
59fd460
add: adding free courses markdown page
alguerocode Feb 27, 2022
6cae1bb
add: feat to add 2 new readmes markdowns"
alguerocode Feb 27, 2022
88bc5df
new: new data structure and algorithms page
alguerocode Feb 28, 2022
a04ce99
feat: complete some of resouces pages
alguerocode Feb 28, 2022
5f62ecd
update
alguerocode Feb 28, 2022
2fcc072
Merge branch 'main' into building
alguerocode Feb 28, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build
node_modules
docs
static
21 changes: 21 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {}
}
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on: [push, pull_request]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}

runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['12.x', '14.x']
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1

- name: Lint
run: npm run lint

- name: Build
run: npm run build
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
# Ignore artifacts:
build
6 changes: 6 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ All-In-One, free resources and collections related to javascript. we provide use
## 📝 License

Copyright © 2021 [salah alhashmi](https://github.com/alguerocode).<br />
This project is [Apache-2.0](https://github.com/devSupporters/masterJS/blob/master/LICENSE) licensed.
This project is [Apache-2.0](https://github.com/devSupporters/masterJS/blob/master/LICENSE) licensed.
4 changes: 2 additions & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
presets: [require.resolve('@docusaurus/core/lib/babel/preset')]
}
12 changes: 0 additions & 12 deletions blog/2019-05-28-first-blog-post.md

This file was deleted.

44 changes: 0 additions & 44 deletions blog/2019-05-29-long-blog-post.md

This file was deleted.

20 changes: 0 additions & 20 deletions blog/2021-08-01-mdx-blog-post.mdx

This file was deleted.

Binary file not shown.
25 changes: 0 additions & 25 deletions blog/2021-08-26-welcome/index.md

This file was deleted.

17 changes: 0 additions & 17 deletions blog/authors.yml

This file was deleted.

Loading