@aklinker1/aframe 0.4.10 → 0.4.11

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/bin/aframe.ts CHANGED
@@ -15,13 +15,6 @@ async function dev(root?: string) {
15
15
  `${BOLD}${GREEN}✓${RESET} Dev servers started in ${devServerTimer()}`,
16
16
  );
17
17
  devServer.printUrls();
18
-
19
- const appProtocol = config.vite.server?.https == null ? "http:" : "https:";
20
- config.proxyPaths.forEach((path) => {
21
- console.log(
22
- ` ${GREEN}→${RESET} ${BOLD}Server:${RESET} ${CYAN}${appProtocol}//localhost${BOLD}:${config.appPort}${RESET}${CYAN}${path}${RESET}`,
23
- );
24
- });
25
18
  console.log(
26
19
  ` ${GREEN}→${RESET} ${BOLD}Server:${RESET} ${CYAN}http://localhost${BOLD}:${config.serverPort}${RESET}${CYAN}${RESET}`,
27
20
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aklinker1/aframe",
3
- "version": "0.4.10",
3
+ "version": "0.4.11",
4
4
  "packageManager": "bun@1.2.5",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/config.ts CHANGED
@@ -115,7 +115,6 @@ export async function resolveConfig(
115
115
  viteConfig,
116
116
  // Overrides
117
117
  {
118
- // logLevel: "warn",
119
118
  configFile: false,
120
119
  root: appDir,
121
120
  publicDir,