Since the standard library version changes, it is preferred to use the version number in the remote import libraries in the scripts
//should avoid this
import {copy} from "https://deno.land/std/fs/copy.ts";
//follow this instead
import {copy} from "https://deno.land/std@0.199.0/fs/copy.ts";