@webflow/webflow-cli 1.6.9 → 1.6.10

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.
@@ -9,9 +9,10 @@ $ npm run dev
9
9
  ```
10
10
 
11
11
  The above command does a few things:
12
- * Installs dependencies
13
- * Watches for changes in the `src/` folder and recompiles your TypeScript files, outputting an `index.js` file under the `public/` folder
14
- * Spins up a process that serves your extension files from under `public/`
12
+
13
+ - Installs dependencies
14
+ - Watches for changes in the `src/` folder and recompiles your TypeScript files, outputting an `index.js` file under the `public/` folder
15
+ - Spins up a process that serves your extension files from under `public/`
15
16
 
16
17
  The command outputs the URL under which your extension is being served. Use this as the “Development URL” for your app in the Webflow Designer’s Apps panel. You can then launch the extension from the same place.
17
18
 
@@ -16,4 +16,4 @@ This command installs dependencies, watches for changes in the `src/` folder, an
16
16
  npm run build
17
17
  ```
18
18
 
19
- This command prepares a `${bundleFile}` in the `./dist/` folder. Upload this `bundle.zip` file for distributing the App inside of your workspace or via the Marketplace.
19
+ This command prepares a `${bundleFile}` in the `./dist/` folder. Upload this `bundle.zip` file for distributing the App inside of your workspace or via the Marketplace.
@@ -4,7 +4,7 @@ document.getElementById("lorem")!.onsubmit = async (event) => {
4
4
  if (el && el.textContent) {
5
5
  el.setTextContent(
6
6
  "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do " +
7
- "eiusmod tempor incididunt ut labore et dolore magna aliqua.",
7
+ "eiusmod tempor incididunt ut labore et dolore magna aliqua."
8
8
  );
9
9
  el.save();
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webflow/webflow-cli",
3
- "version": "1.6.9",
3
+ "version": "1.6.10",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "bin": {
6
6
  "webflow": "./dist/index.js"