create-t6-app
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "create-t6-app", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Create a web application with the T6 stack", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,5 +0,5 @@ | ||
import open from "open" | ||
import prompts from "prompts" | ||
import open from "open"; | ||
import prompts from "prompts"; | ||
export function sleep(ms) { | ||
function sleep(ms) { | ||
return new Promise((resolve) => { | ||
@@ -15,13 +15,13 @@ setTimeout(resolve, ms); | ||
message: "What is the name of your app?" | ||
}) | ||
}); | ||
console.log("Creating T6 app in " + response.dir + "...") | ||
console.log("Creating T6 app in " + response.dir + "..."); | ||
await sleep(5000) | ||
await sleep(5000); | ||
console.log("o7") | ||
console.log("o7"); | ||
await sleep(100) | ||
await sleep(100); | ||
await open("https://youtu.be/dQw4w9WgXcQ") | ||
})() | ||
await open("https://youtu.be/dQw4w9WgXcQ"); | ||
})(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
882