bb-relay 0.0.13 → 0.0.14
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/dist/index.d.mts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +11 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
- package/src/constants/WEBSITE.ts +8 -0
- package/src/index.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -572,4 +572,11 @@ type Rating = {
|
|
|
572
572
|
|
|
573
573
|
declare const SENTINEL_FILE = ".release.commit";
|
|
574
574
|
|
|
575
|
-
|
|
575
|
+
declare const WEBSITE: {
|
|
576
|
+
main: string;
|
|
577
|
+
console: string;
|
|
578
|
+
marketplace: string;
|
|
579
|
+
docs: string;
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
export { type BBEvent, type BBRequest, type Checkpoint, type CopyArg, type DirInfo, type DirectoryContents, type DirectoryStats, type EventReturn, type FileContent, type FileInfo, type FileNode, type GitFileStatus, type IconArg, type Language, type Load, type Locale, type MenuContent, type Nav, type Plugin, type Project, type Rating, type Release, type RenameType, type RequestReturn, type Result, type Route, SENTINEL_FILE, type Settings, type TutorialHeader, type User, type ValidateManifestProp, WEBSITE, type WatchFSEvent, type Zip, BBRelay as default, enGB, frFR, injectStyles, registerEvent, registerRequest, validateManifest };
|
package/dist/index.d.ts
CHANGED
|
@@ -572,4 +572,11 @@ type Rating = {
|
|
|
572
572
|
|
|
573
573
|
declare const SENTINEL_FILE = ".release.commit";
|
|
574
574
|
|
|
575
|
-
|
|
575
|
+
declare const WEBSITE: {
|
|
576
|
+
main: string;
|
|
577
|
+
console: string;
|
|
578
|
+
marketplace: string;
|
|
579
|
+
docs: string;
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
export { type BBEvent, type BBRequest, type Checkpoint, type CopyArg, type DirInfo, type DirectoryContents, type DirectoryStats, type EventReturn, type FileContent, type FileInfo, type FileNode, type GitFileStatus, type IconArg, type Language, type Load, type Locale, type MenuContent, type Nav, type Plugin, type Project, type Rating, type Release, type RenameType, type RequestReturn, type Result, type Route, SENTINEL_FILE, type Settings, type TutorialHeader, type User, type ValidateManifestProp, WEBSITE, type WatchFSEvent, type Zip, BBRelay as default, enGB, frFR, injectStyles, registerEvent, registerRequest, validateManifest };
|
package/dist/index.js
CHANGED
|
@@ -21,6 +21,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
21
21
|
var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
|
23
23
|
SENTINEL_FILE: () => SENTINEL_FILE_default,
|
|
24
|
+
WEBSITE: () => WEBSITE_default,
|
|
24
25
|
default: () => src_default,
|
|
25
26
|
enGB: () => en_GB_default,
|
|
26
27
|
frFR: () => fr_FR_default,
|
|
@@ -430,11 +431,21 @@ var validate_manifest_default = validateManifest;
|
|
|
430
431
|
var SENTINEL_FILE = ".release.commit";
|
|
431
432
|
var SENTINEL_FILE_default = SENTINEL_FILE;
|
|
432
433
|
|
|
434
|
+
// src/constants/WEBSITE.ts
|
|
435
|
+
var WEBSITE = {
|
|
436
|
+
main: "http://bb-editor.adeolaade.com/",
|
|
437
|
+
console: "http://bb-console.adeolaade.com",
|
|
438
|
+
marketplace: "http://bb-marketplace.adeolaade.com",
|
|
439
|
+
docs: "http://bb-docs.adeolaade.com"
|
|
440
|
+
};
|
|
441
|
+
var WEBSITE_default = WEBSITE;
|
|
442
|
+
|
|
433
443
|
// src/index.ts
|
|
434
444
|
var src_default = BBRelay;
|
|
435
445
|
// Annotate the CommonJS export names for ESM import in node:
|
|
436
446
|
0 && (module.exports = {
|
|
437
447
|
SENTINEL_FILE,
|
|
448
|
+
WEBSITE,
|
|
438
449
|
enGB,
|
|
439
450
|
frFR,
|
|
440
451
|
injectStyles,
|
package/dist/index.mjs
CHANGED
|
@@ -399,10 +399,20 @@ var validate_manifest_default = validateManifest;
|
|
|
399
399
|
var SENTINEL_FILE = ".release.commit";
|
|
400
400
|
var SENTINEL_FILE_default = SENTINEL_FILE;
|
|
401
401
|
|
|
402
|
+
// src/constants/WEBSITE.ts
|
|
403
|
+
var WEBSITE = {
|
|
404
|
+
main: "http://bb-editor.adeolaade.com/",
|
|
405
|
+
console: "http://bb-console.adeolaade.com",
|
|
406
|
+
marketplace: "http://bb-marketplace.adeolaade.com",
|
|
407
|
+
docs: "http://bb-docs.adeolaade.com"
|
|
408
|
+
};
|
|
409
|
+
var WEBSITE_default = WEBSITE;
|
|
410
|
+
|
|
402
411
|
// src/index.ts
|
|
403
412
|
var src_default = BBRelay;
|
|
404
413
|
export {
|
|
405
414
|
SENTINEL_FILE_default as SENTINEL_FILE,
|
|
415
|
+
WEBSITE_default as WEBSITE,
|
|
406
416
|
src_default as default,
|
|
407
417
|
en_GB_default as enGB,
|
|
408
418
|
fr_FR_default as frFR,
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -38,6 +38,7 @@ import validateManifest, {
|
|
|
38
38
|
} from "./lib/validate-manifest";
|
|
39
39
|
import { Rating } from "./types/plugins/Rating";
|
|
40
40
|
import SENTINEL_FILE from "./constants/SENTINEL_FILE";
|
|
41
|
+
import WEBSITE from "./constants/WEBSITE";
|
|
41
42
|
|
|
42
43
|
export default BBRelay;
|
|
43
44
|
|
|
@@ -76,5 +77,5 @@ export type {
|
|
|
76
77
|
};
|
|
77
78
|
|
|
78
79
|
export type { Release, Plugin, Zip, ValidateManifestProp, Rating, FileNode };
|
|
79
|
-
export { SENTINEL_FILE };
|
|
80
|
+
export { SENTINEL_FILE, WEBSITE };
|
|
80
81
|
export { enGB, frFR };
|