@companion-module/base 0.4.1 → 0.4.3
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 +14 -0
- package/dist/manifest.d.ts +2 -2
- package/dist/manifest.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.3](https://github.com/bitfocus/companion-module-base/compare/v0.4.2...v0.4.3) (2022-10-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* manifest type reexports ([5ffff52](https://github.com/bitfocus/companion-module-base/commit/5ffff525ae7ee352f9369417e9da04cec1e807c3))
|
|
9
|
+
|
|
10
|
+
## [0.4.2](https://github.com/bitfocus/companion-module-base/compare/v0.4.1...v0.4.2) (2022-10-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* module manifest validation issues ([4d6cc02](https://github.com/bitfocus/companion-module-base/commit/4d6cc028223786dd4101f19250d35ade37c35ea3))
|
|
16
|
+
|
|
3
17
|
## [0.4.1](https://github.com/bitfocus/companion-module-base/compare/v0.4.0...v0.4.1) (2022-10-01)
|
|
4
18
|
|
|
5
19
|
|
package/dist/manifest.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ModuleManifest } from '../generated/manifest';
|
|
2
|
-
export { ModuleManifest };
|
|
1
|
+
import type { ModuleManifest, ModuleManifestMaintainer, ModuleManifestRuntime } from '../generated/manifest';
|
|
2
|
+
export { ModuleManifest, ModuleManifestMaintainer, ModuleManifestRuntime };
|
|
3
3
|
/** Validate that a manifest looks correctly populated */
|
|
4
4
|
export declare function validateManifest(manifest: ModuleManifest): void;
|
|
5
5
|
//# sourceMappingURL=manifest.d.ts.map
|
package/dist/manifest.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../src/manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../src/manifest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,wBAAwB,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAA;AAI5G,OAAO,EAAE,cAAc,EAAE,wBAAwB,EAAE,qBAAqB,EAAE,CAAA;AAE1E,yDAAyD;AACzD,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,cAAc,GAAG,IAAI,CAO/D"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@companion-module/base",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"assets"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
+
"ajv": "^8.11.0",
|
|
24
25
|
"@sentry/node": "^7.14.0",
|
|
25
26
|
"@sentry/tracing": "^7.14.0",
|
|
26
27
|
"ejson": "^2.2.3",
|
|
@@ -34,7 +35,6 @@
|
|
|
34
35
|
"@tsconfig/node14": "^1.0.3",
|
|
35
36
|
"@types/ejson": "^2.2.0",
|
|
36
37
|
"@types/node": "^14.18.31",
|
|
37
|
-
"ajv": "^8.11.0",
|
|
38
38
|
"ajv-cli": "^5.0.0",
|
|
39
39
|
"json-schema-to-typescript": "^11.0.2",
|
|
40
40
|
"prettier": "^2.7.1",
|