53 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
    // See https://go.microsoft.com/fwlink/?LinkId=733558
 | 
						|
    // for the documentation about the tasks.json format
 | 
						|
    "version": "2.0.0",
 | 
						|
    "tasks": [
 | 
						|
        {
 | 
						|
            "label": "Export Slides HTML",
 | 
						|
            "type": "shell",
 | 
						|
            "command": "npm",
 | 
						|
            "args": [
 | 
						|
                "run",
 | 
						|
                "build"
 | 
						|
            ]
 | 
						|
        },
 | 
						|
        {
 | 
						|
            "label": "Preview Slides",
 | 
						|
            "type": "shell",
 | 
						|
            "command": "npm",
 | 
						|
            "args": [
 | 
						|
                "run",
 | 
						|
                "preview"
 | 
						|
            ]
 | 
						|
        },
 | 
						|
        {
 | 
						|
            "label": "Export Slides PDF",
 | 
						|
            "type": "shell",
 | 
						|
            "command": "npm",
 | 
						|
            "args": [
 | 
						|
                "run",
 | 
						|
                "pdf"
 | 
						|
            ]
 | 
						|
        },
 | 
						|
                {
 | 
						|
            "label": "Export Course HTML",
 | 
						|
            "type": "shell",
 | 
						|
            "command": "mdbook",
 | 
						|
            "args": [
 | 
						|
                "build"
 | 
						|
            ]
 | 
						|
        },
 | 
						|
        {
 | 
						|
            "label": "Preview Course",
 | 
						|
            "type": "shell",
 | 
						|
            "command": "mdbook",
 | 
						|
            "args": [
 | 
						|
                "serve",
 | 
						|
                "--open"
 | 
						|
            ]
 | 
						|
        },
 | 
						|
    ],
 | 
						|
    "inputs": [
 | 
						|
    ]
 | 
						|
} |