@editframe/cli 0.11.0-beta.10 → 0.11.0-beta.14

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/VERSION.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "0.11.0-beta.10";
1
+ export declare const VERSION = "0.11.0-beta.14";
package/dist/VERSION.js CHANGED
@@ -1,4 +1,4 @@
1
- const VERSION = "0.11.0-beta.10";
1
+ const VERSION = "0.11.0-beta.14";
2
2
  export {
3
3
  VERSION
4
4
  };
@@ -1,6 +1,6 @@
1
1
  import chalk from "chalk";
2
- import { chromium } from "playwright";
3
2
  import debug from "debug";
3
+ import { chromium } from "playwright";
4
4
  import { withSpinner } from "./withSpinner.js";
5
5
  const browserLog = debug("ef:cli::browser");
6
6
  async function launchBrowserAndWaitForSDK(options, fn) {
@@ -12,7 +12,7 @@ async function launchBrowserAndWaitForSDK(options, fn) {
12
12
  devtools: options.interactive === true
13
13
  });
14
14
  });
15
- const page = await withSpinner("Loading EditFrame SDK", async () => {
15
+ const page = await withSpinner("Loading Editframe SDK", async () => {
16
16
  const pageOptions = {};
17
17
  if (options.interactive === true) {
18
18
  pageOptions.viewport = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@editframe/cli",
3
- "version": "0.11.0-beta.10",
3
+ "version": "0.11.0-beta.14",
4
4
  "description": "Command line interface for EditFrame",
5
5
  "bin": {
6
6
  "editframe": "./dist/index.js"
@@ -23,10 +23,10 @@
23
23
  "vite-tsconfig-paths": "^4.3.2"
24
24
  },
25
25
  "dependencies": {
26
- "@editframe/api": "0.11.0-beta.10",
27
- "@editframe/assets": "0.11.0-beta.10",
28
- "@editframe/elements": "0.11.0-beta.10",
29
- "@editframe/vite-plugin": "0.11.0-beta.10",
26
+ "@editframe/api": "0.11.0-beta.14",
27
+ "@editframe/assets": "0.11.0-beta.14",
28
+ "@editframe/elements": "0.11.0-beta.14",
29
+ "@editframe/vite-plugin": "0.11.0-beta.14",
30
30
  "@inquirer/prompts": "^5.3.8",
31
31
  "axios": "^1.6.8",
32
32
  "chalk": "^5.3.0",
@@ -1,6 +1,6 @@
1
1
  import chalk from "chalk";
2
- import { type Browser, type Page, chromium } from "playwright";
3
2
  import debug from "debug";
3
+ import { type Browser, type Page, chromium } from "playwright";
4
4
 
5
5
  import { withSpinner } from "./withSpinner.ts";
6
6
 
@@ -26,7 +26,7 @@ export async function launchBrowserAndWaitForSDK(
26
26
  });
27
27
  });
28
28
 
29
- const page = await withSpinner("Loading EditFrame SDK", async () => {
29
+ const page = await withSpinner("Loading Editframe SDK", async () => {
30
30
  const pageOptions: Parameters<Browser["newPage"]>[0] = {};
31
31
  if (options.interactive === true) {
32
32
  // By default, playwright uses its own viewport, so resizing the browser window
@@ -1,7 +1,7 @@
1
1
  import path from "node:path";
2
2
 
3
- import { type ViteDevServer, createServer } from "vite";
4
3
  import tailwindcss from "tailwindcss";
4
+ import { type ViteDevServer, createServer } from "vite";
5
5
 
6
6
  import { vitePluginEditframe as editframe } from "@editframe/vite-plugin";
7
7