figmatk 0.1.0 → 0.1.1
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/package.json
CHANGED
|
@@ -6,7 +6,7 @@ description: >
|
|
|
6
6
|
clone or remove slides, or produce a .deck file for Figma Slides.
|
|
7
7
|
Powered by FigmaTK under the hood.
|
|
8
8
|
metadata:
|
|
9
|
-
version: "0.1.
|
|
9
|
+
version: "0.1.1"
|
|
10
10
|
---
|
|
11
11
|
|
|
12
12
|
# Figma Slides Creator
|
|
@@ -45,7 +45,7 @@ Use this when the user wants a new presentation. Follow these steps **in order,
|
|
|
45
45
|
The environment has no `node_modules`. **Before writing any script**, run this exact command:
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
mkdir -p /tmp/figmatk-ws && cd /tmp/figmatk-ws && npm init -y && npm install figmatk
|
|
48
|
+
[ -d /tmp/figmatk-ws/node_modules ] || (mkdir -p /tmp/figmatk-ws && cd /tmp/figmatk-ws && npm init -y && npm install figmatk)
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
Do not proceed to Step 2 until this command succeeds.
|