@chauvet/connect-base-profiles 2.2.0 → 2.2.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/README.md +4 -5
- package/dist/baseProfiles.d.ts +4 -0
- package/dist/baseProfiles.js +5429 -39
- package/keys.txt +1 -0
- package/package.json +1 -1
- package/profileIds.txt +1 -0
package/README.md
CHANGED
|
@@ -28,13 +28,13 @@ Use the appropriate command to bump the version:
|
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
# For a patch release (e.g., 1.0.0 → 1.0.1):
|
|
31
|
-
npm
|
|
31
|
+
npm run bump:patch
|
|
32
32
|
|
|
33
33
|
# For a minor release (e.g., 1.0.1 → 1.1.0):
|
|
34
|
-
npm
|
|
34
|
+
npm run bump:minor
|
|
35
35
|
|
|
36
36
|
# For a major release (e.g., 1.1.0 → 2.0.0):
|
|
37
|
-
npm
|
|
37
|
+
npm run bump:major
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
This will automatically update your package.json, create a Git commit, and tag it with the new version.
|
|
@@ -45,7 +45,6 @@ If the version command didn’t automatically push your commit and tag, do so no
|
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
47
|
git push
|
|
48
|
-
git push --tags
|
|
49
48
|
```
|
|
50
49
|
|
|
51
50
|
---
|
|
@@ -53,7 +52,7 @@ git push --tags
|
|
|
53
52
|
Finally, publish your changes. If your package is scoped and intended to be publicly available, use:
|
|
54
53
|
|
|
55
54
|
```bash
|
|
56
|
-
npm
|
|
55
|
+
npm run package
|
|
57
56
|
```
|
|
58
57
|
|
|
59
58
|
---
|
package/dist/baseProfiles.d.ts
CHANGED
|
@@ -12,8 +12,12 @@ export interface BaseProfile {
|
|
|
12
12
|
uvLocation: number;
|
|
13
13
|
dimmerLocation: number;
|
|
14
14
|
fineDimmerLocation: number;
|
|
15
|
+
dimmerSpeedMode?: any;
|
|
15
16
|
strobeLocation: number;
|
|
16
17
|
whiteMacros: Record<string, number> | null;
|
|
18
|
+
autoPrograms: any;
|
|
19
|
+
effectMacro?: any;
|
|
20
|
+
dimmerSpeedMacro?: any;
|
|
17
21
|
name: string;
|
|
18
22
|
}
|
|
19
23
|
declare const baseProfiles: Record<number, BaseProfile>;
|