1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

Add generate-renderer and dummy renderer

This commit is contained in:
Kamran Ahmed
2025-04-05 00:36:58 +01:00
parent 74781d6e7b
commit 5a1f52892e
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ jobs:
run: | run: |
git clone https://${{ secrets.GH_PAT }}@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1 git clone https://${{ secrets.GH_PAT }}@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1
npm run generate-renderer npm run generate-renderer
npm run compress:images # npm run compress:images
npm run build npm run build
# -------------------- # --------------------

View File

@@ -4,7 +4,7 @@ Reading files is a common task in PHP and it provides a range of functions for t
Here's a small example using `fgets()`: Here's a small example using `fgets()`:
```PHP ```php
$file = fopen("example.txt", "r"); $file = fopen("example.txt", "r");
if ($file) { if ($file) {
while (($line = fgets($file)) !== false) { while (($line = fgets($file)) !== false) {