@stacksjs/docs 0.58.72 → 0.58.73
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/index.js +2 -2
- package/package.json +4 -4
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import {docs as docs2} from "@stacksjs/config";
|
|
|
6
6
|
import {server as server2} from "@stacksjs/server";
|
|
7
7
|
import {kolorist as c} from "@stacksjs/cli";
|
|
8
8
|
import {withPwa} from "@vite-pwa/vitepress";
|
|
9
|
-
//
|
|
9
|
+
// ../../../../package.json
|
|
10
10
|
var version = "0.0.0";
|
|
11
11
|
|
|
12
12
|
// src/scripts/pwa.ts
|
|
@@ -168,7 +168,7 @@ var frameworkDefaults = {
|
|
|
168
168
|
server3.printUrls = () => {
|
|
169
169
|
console.log(` ${c.blue(c.bold("STACKS"))} ${c.blue(version)}`);
|
|
170
170
|
console.log(` ${c.green("\u279C")} ${c.bold("Docs")}: ${c.green("https://stacks.localhost/docs")}`);
|
|
171
|
-
console.log(` ${c.green("\u279C")} ${c.bold("Temp URL")}: ${c.green("http://stacksjs.test:
|
|
171
|
+
console.log(` ${c.green("\u279C")} ${c.bold("Temp URL")}: ${c.green("http://stacksjs.test:3000")}`);
|
|
172
172
|
};
|
|
173
173
|
}
|
|
174
174
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/docs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.73",
|
|
5
5
|
"description": "The Stacks way to document.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@stacksjs/path": "latest",
|
|
53
53
|
"@stacksjs/server": "latest",
|
|
54
54
|
"@stacksjs/vite": "latest",
|
|
55
|
-
"vitepress": "1.0.0-rc.
|
|
55
|
+
"vitepress": "1.0.0-rc.44"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@stacksjs/alias": "latest",
|
|
@@ -60,11 +60,11 @@
|
|
|
60
60
|
"@stacksjs/path": "latest",
|
|
61
61
|
"@stacksjs/server": "latest",
|
|
62
62
|
"@stacksjs/vite": "latest",
|
|
63
|
-
"vitepress": "1.0.0-rc.
|
|
63
|
+
"vitepress": "1.0.0-rc.44",
|
|
64
64
|
"vitepress-plugin-twoslash": "^0.10.2"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@stacksjs/development": "latest",
|
|
68
|
-
"@vite-pwa/vitepress": "^0.
|
|
68
|
+
"@vite-pwa/vitepress": "^0.4.0"
|
|
69
69
|
}
|
|
70
70
|
}
|
package/src/index.ts
CHANGED
|
@@ -41,11 +41,11 @@ export const frameworkDefaults = {
|
|
|
41
41
|
server.printUrls = () => { // eslint-disable-next-line no-console
|
|
42
42
|
console.log(` ${c.blue(c.bold('STACKS'))} ${c.blue(version)}`)
|
|
43
43
|
|
|
44
|
-
// console.log(` ${c.green('➜')} ${c.bold('Docs')}: ${c.green('http://stacks.localhost:
|
|
44
|
+
// console.log(` ${c.green('➜')} ${c.bold('Docs')}: ${c.green('http://stacks.localhost:3000/docs')}`)
|
|
45
45
|
// eslint-disable-next-line no-console
|
|
46
46
|
console.log(` ${c.green('➜')} ${c.bold('Docs')}: ${c.green('https://stacks.localhost/docs')}`)
|
|
47
47
|
// eslint-disable-next-line no-console
|
|
48
|
-
console.log(` ${c.green('➜')} ${c.bold('Temp URL')}: ${c.green('http://stacksjs.test:
|
|
48
|
+
console.log(` ${c.green('➜')} ${c.bold('Temp URL')}: ${c.green('http://stacksjs.test:3000')}`)
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
},
|