This commit is contained in:
Mike Phares 2024-06-03 20:10:22 -07:00
parent 489a7b25b9
commit f5da6fe2ae
3 changed files with 32 additions and 1 deletions

12
.gitignore vendored
View File

@ -12,3 +12,15 @@ replit.nix
# Local Netlify folder
.netlify
content/_-Review
content/1-1
content/Barcode-Host-Tasks
content/CEP
content/CI-CD
content/cli
content/draw-io
content/EAF
content/IIS
content/OI
content/Training

17
.vscode/mklink.md vendored Normal file
View File

@ -0,0 +1,17 @@
# mklink
```bash
# mklink /J "L:\Git\jackyzha0-quartz-phares\content\.Infineon" "D:\5-Other-Small\Notes\Infineon"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\_-Review" "D:\5-Other-Small\Notes\Infineon\_-Review"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\1-1" "D:\5-Other-Small\Notes\Infineon\1;1"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\CEP" "D:\5-Other-Small\Notes\Infineon\CEP"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\CI-CD" "D:\5-Other-Small\Notes\Infineon\CI-CD"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\cli" "D:\5-Other-Small\Notes\Infineon\cli"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\draw-io" "D:\5-Other-Small\Notes\Infineon\draw-io"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\EAF" "D:\5-Other-Small\Notes\Infineon\EAF"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\IIS" "D:\5-Other-Small\Notes\Infineon\IIS"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\OI" "D:\5-Other-Small\Notes\Infineon\OI"
mklink /J "L:\Git\jackyzha0-quartz-phares\content\Training" "D:\5-Other-Small\Notes\Infineon\Training"
#
mklink /J "L:\Git\jackyzha0-quartz-phares\content\Barcode-Host-Tasks" "D:\5-Other-Small\Kanban\Barcode-Host\tasks"
```

View File

@ -14,10 +14,12 @@
"scripts": {
"quartz": "./quartz/bootstrap-cli.mjs",
"docs": "npx quartz build --serve -d docs",
"build": "npx netlify build",
"check": "tsc --noEmit && npx prettier . --check",
"format": "npx prettier . --write",
"test": "tsx ./quartz/util/path.test.ts && tsx ./quartz/depgraph.test.ts",
"profile": "0x -D prof ./quartz/bootstrap-cli.mjs build --concurrency=1"
"profile": "0x -D prof ./quartz/bootstrap-cli.mjs build --concurrency=1",
"publish": "npx netlify deploy --prod"
},
"engines": {
"npm": ">=9.3.1",