| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 | {	"version": "2.0.0",	// https://code.visualstudio.com/docs/editor/tasks	// https://gist.github.com/deadalusai/9e13e36d61ec7fb72148	// ${workspaceRoot}: the root folder of the team	// ${file}: the current opened file	// ${fileBasename}: the current opened file's basename	// ${fileDirname}: the current opened file's dirname	// ${fileExtname}: the current opened file's extension	// ${cwd}: the current working directory of the spawned process	"tasks": [		{			"label": "build_flowy_sdk",			"type": "shell",			"command": "sh ./scripts/build_sdk.sh",			"windows": {				"options": {					"env": {						"FLOWY_DEV_ENV": "Windows",					},					"shell": {						"executable": "cmd.exe",						"args": [							"/d",							"/c",							".\\scripts\\build_sdk.cmd"						]					}				}			},			"linux": {				"options": {					"env": {						"FLOWY_DEV_ENV": "Linux-x86",					}				},			},			"osx": {				"options": {					"env": {						"FLOWY_DEV_ENV": "macOS",					}				},			},			"group": "build",			"options": {				"cwd": "${workspaceFolder}/../"			},			// "problemMatcher": [			//     "$rustc"			// ],		},		{			"label": "Code Gen",			"type": "shell",			"dependsOn": [				"Flutter Pub",				"Flutter Package Get",				"Generate Language Files",				"Generate Freezed Files"			],			"group": {				"kind": "build",				"isDefault": true,			},			"dependsOrder": "sequence",			"presentation": {				"reveal": "always",				"panel": "new"			},		},		{			"label": "Flutter Pub",			"type": "shell",			"command": "flutter pub get",		},		{			"label": "Flutter Package Get",			"type": "shell",			"command": "flutter packages pub get",		},		{			"label": "Generate Freezed Files",			"type": "shell",			"command": "flutter pub run build_runner build --delete-conflicting-outputs",		},		{			"label": "Generate Language Files",			"type": "shell",			"command": "sh ./scripts/generate_language_files.sh",			"windows": {				"options": {					"shell": {						"executable": "cmd.exe",						"args": [							"/d",							"/c",							".\\scripts\\generate_language_files.cmd"						]					}				}			},			"group": "build",			"options": {				"cwd": "${workspaceFolder}/../"			},		},		{			"label": "Clean",			"type": "shell",			"command": "sh ./scripts/clean.sh",			"windows": {				"options": {					"shell": {						"executable": "cmd.exe",						"args": [							"/d",							"/c",							".\\scripts\\clean.cmd"						]					}				}			},			"options": {				"cwd": "${workspaceFolder}/../"			},		}	]}
 |