@camstack/system 1.2.36 → 1.2.37
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.
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import { BaseAddon, CoreBlock, ProviderRegistration } from '@camstack/types';
|
|
2
2
|
export declare class CoreBlocksAddon extends BaseAddon {
|
|
3
|
+
/**
|
|
4
|
+
* `super({})` is NOT optional, and its absence is invisible until runtime:
|
|
5
|
+
* `BaseAddon.resolveConfig` does `Object.keys(this.defaults)`, so an addon
|
|
6
|
+
* that skips it dies at init with "Cannot convert undefined or null to
|
|
7
|
+
* object" — while the build stays green, the tests pass, and the addon still
|
|
8
|
+
* reports as `running`. Found in production, not here.
|
|
9
|
+
*/
|
|
10
|
+
constructor();
|
|
3
11
|
private store;
|
|
4
12
|
private transpiler;
|
|
5
13
|
private typeDefs;
|
|
@@ -303,6 +303,16 @@ async function walk(root, dir, out) {
|
|
|
303
303
|
* never ran it would be the exact failure this repo keeps paying for.
|
|
304
304
|
*/
|
|
305
305
|
var CoreBlocksAddon = class extends require_dist.BaseAddon {
|
|
306
|
+
/**
|
|
307
|
+
* `super({})` is NOT optional, and its absence is invisible until runtime:
|
|
308
|
+
* `BaseAddon.resolveConfig` does `Object.keys(this.defaults)`, so an addon
|
|
309
|
+
* that skips it dies at init with "Cannot convert undefined or null to
|
|
310
|
+
* object" — while the build stays green, the tests pass, and the addon still
|
|
311
|
+
* reports as `running`. Found in production, not here.
|
|
312
|
+
*/
|
|
313
|
+
constructor() {
|
|
314
|
+
super({});
|
|
315
|
+
}
|
|
306
316
|
store = null;
|
|
307
317
|
transpiler = null;
|
|
308
318
|
typeDefs = null;
|
|
@@ -300,6 +300,16 @@ async function walk(root, dir, out) {
|
|
|
300
300
|
* never ran it would be the exact failure this repo keeps paying for.
|
|
301
301
|
*/
|
|
302
302
|
var CoreBlocksAddon = class extends BaseAddon {
|
|
303
|
+
/**
|
|
304
|
+
* `super({})` is NOT optional, and its absence is invisible until runtime:
|
|
305
|
+
* `BaseAddon.resolveConfig` does `Object.keys(this.defaults)`, so an addon
|
|
306
|
+
* that skips it dies at init with "Cannot convert undefined or null to
|
|
307
|
+
* object" — while the build stays green, the tests pass, and the addon still
|
|
308
|
+
* reports as `running`. Found in production, not here.
|
|
309
|
+
*/
|
|
310
|
+
constructor() {
|
|
311
|
+
super({});
|
|
312
|
+
}
|
|
303
313
|
store = null;
|
|
304
314
|
transpiler = null;
|
|
305
315
|
typeDefs = null;
|