@within-7/jetr 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -504,7 +504,7 @@ program.name("jetr").description(`Deploy static sites instantly
|
|
|
504
504
|
$ jetr ./dist my-blog Deploy and assign a subdomain
|
|
505
505
|
$ jetr ./dist blog.example.com Deploy to a custom domain (shows DNS setup)
|
|
506
506
|
$ jetr index.html Deploy a single file
|
|
507
|
-
$ jetr *.html *.css my-site Deploy multiple files to a named site`).version("0.8.
|
|
507
|
+
$ jetr *.html *.css my-site Deploy multiple files to a named site`).version("0.8.1");
|
|
508
508
|
program.argument("[paths...]", "directory, file(s), and/or site name to deploy").action(async (paths) => {
|
|
509
509
|
const config = loadConfig();
|
|
510
510
|
if (!config.token) {
|
|
@@ -570,7 +570,7 @@ program.argument("[paths...]", "directory, file(s), and/or site name to deploy")
|
|
|
570
570
|
if (customHostname) {
|
|
571
571
|
console.log();
|
|
572
572
|
console.log(chalk2.yellow(` DNS: ensure CNAME record exists`));
|
|
573
|
-
console.log(` ${chalk2.cyan(customHostname)} CNAME ${chalk2.dim("jetr-serve.
|
|
573
|
+
console.log(` ${chalk2.cyan(customHostname)} CNAME ${chalk2.dim("jetr-serve.within-7.com")} (Proxied)`);
|
|
574
574
|
}
|
|
575
575
|
console.log();
|
|
576
576
|
if (mode === "directory") {
|