@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.
- package/CHANGELOG.md +7 -0
- package/README.md +7 -0
- package/dist/index.js +173 -171
- package/dist/scaffolds/default/README.md +4 -3
- package/dist/scaffolds/react/README.md +1 -1
- package/dist/scaffolds/typescript-alt/src/index.ts +1 -1
- package/package.json +1 -1
|
@@ -9,9 +9,10 @@ $ npm run dev
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
The above command does a few things:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
}
|