Skip to content

Commit c2c75ac

Browse files
Merge pull request #79 from kamranahmedse/master
Create a new pull request by comparing changes across two branches
2 parents 8c402e5 + 24c2622 commit c2c75ac

File tree

440 files changed

+7171
-1793
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

440 files changed

+7171
-1793
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
PUBLIC_API_URL=http://api.roadmap.sh
2+
PUBLIC_AVATAR_BASE_URL=https://dodrc8eu8m09s.cloudfront.net/avatars

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: [ master ]
55
env:
66
PUBLIC_API_URL: "https://api.roadmap.sh"
7+
PUBLIC_AVATAR_BASE_URL: "https://dodrc8eu8m09s.cloudfront.net/avatars"
78
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89
PAT: ${{ secrets.PAT }}
910
CI: true

.github/workflows/update-sponsors.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dist/
55
# dependencies
66
node_modules/
77

8-
bin/developer-roadmap
8+
scripts/developer-roadmap
99

1010
# logs
1111
npm-debug.log*
@@ -23,4 +23,5 @@ pnpm-debug.log*
2323
/test-results/
2424
/playwright-report/
2525
/playwright/.cache/
26-
tests-examples
26+
tests-examples
27+
*.csv

astro.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// https://astro.build/config
2+
import preact from '@astrojs/preact';
23
import sitemap from '@astrojs/sitemap';
34
import tailwind from '@astrojs/tailwind';
4-
import { defineConfig } from 'astro/config';
55
import compress from 'astro-compress';
6+
import { defineConfig } from 'astro/config';
67
import rehypeExternalLinks from 'rehype-external-links';
78
import { serializeSitemap, shouldIndexPage } from './sitemap.mjs';
8-
import preact from '@astrojs/preact';
99

1010
// https://astro.build/config
1111
export default defineConfig({

package.json

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,42 +11,44 @@
1111
"format": "prettier --write .",
1212
"astro": "astro",
1313
"deploy": "NODE_DEBUG=gh-pages gh-pages -d dist -t",
14-
"compress:jsons": "node bin/compress-jsons.cjs",
14+
"compress:jsons": "node scripts/compress-jsons.cjs",
1515
"upgrade": "ncu -u",
16-
"roadmap-links": "node bin/roadmap-links.cjs",
17-
"roadmap-dirs": "node bin/roadmap-dirs.cjs",
18-
"roadmap-content": "node bin/roadmap-content.cjs",
19-
"best-practice-dirs": "node bin/best-practice-dirs.cjs",
16+
"roadmap-links": "node scripts/roadmap-links.cjs",
17+
"roadmap-dirs": "node scripts/roadmap-dirs.cjs",
18+
"roadmap-content": "node scripts/roadmap-content.cjs",
19+
"best-practice-dirs": "node scripts/best-practice-dirs.cjs",
20+
"best-practice-content": "node scripts/best-practice-content.cjs",
2021
"test:e2e": "playwright test"
2122
},
2223
"dependencies": {
23-
"@astrojs/preact": "^2.1.0",
24-
"@astrojs/sitemap": "^1.2.2",
25-
"@astrojs/tailwind": "^3.1.1",
24+
"@astrojs/preact": "^2.2.0",
25+
"@astrojs/sitemap": "^1.3.1",
26+
"@astrojs/tailwind": "^3.1.3",
2627
"@fingerprintjs/fingerprintjs": "^3.4.1",
27-
"@nanostores/preact": "^0.3.1",
28-
"astro": "^2.2.3",
29-
"astro-compress": "^1.1.35",
30-
"jose": "^4.13.2",
31-
"js-cookie": "^3.0.1",
32-
"nanostores": "^0.7.4",
28+
"@nanostores/preact": "^0.4.1",
29+
"astro": "^2.5.0",
30+
"astro-compress": "^1.1.43",
31+
"jose": "^4.14.4",
32+
"js-cookie": "^3.0.5",
33+
"nanostores": "^0.8.1",
3334
"node-html-parser": "^6.1.5",
34-
"npm-check-updates": "^16.10.8",
35-
"preact": "^10.13.2",
36-
"rehype-external-links": "^2.0.1",
37-
"roadmap-renderer": "^1.0.5",
38-
"tailwindcss": "^3.3.1"
35+
"npm-check-updates": "^16.10.12",
36+
"preact": "^10.14.1",
37+
"rehype-external-links": "^2.1.0",
38+
"roadmap-renderer": "^1.0.6",
39+
"tailwindcss": "^3.3.2"
3940
},
4041
"devDependencies": {
41-
"@playwright/test": "^1.32.3",
42+
"@playwright/test": "^1.33.0",
4243
"@tailwindcss/typography": "^0.5.9",
4344
"@types/js-cookie": "^3.0.3",
45+
"csv-parser": "^3.0.0",
4446
"gh-pages": "^5.0.0",
4547
"js-yaml": "^4.1.0",
4648
"markdown-it": "^13.0.1",
4749
"openai": "^3.2.1",
48-
"prettier": "^2.8.7",
49-
"prettier-plugin-astro": "^0.8.0",
50-
"prettier-plugin-tailwindcss": "^0.2.7"
50+
"prettier": "^2.8.8",
51+
"prettier-plugin-astro": "^0.9.0",
52+
"prettier-plugin-tailwindcss": "^0.3.0"
5153
}
5254
}

0 commit comments

Comments
 (0)