@blocklet/constant 1.16.44-beta-20250606-000924-3db49e6a → 1.16.45-beta-20250609-025419-7fd1f86c
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/index.d.ts +4 -0
- package/index.js +6 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -745,6 +745,10 @@ export declare const baseLanguages: {
|
|
|
745
745
|
export type StringNumberObject = {
|
|
746
746
|
[key: string]: number;
|
|
747
747
|
};
|
|
748
|
+
export declare const ABT_NODE_KERNEL_OR_BLOCKLET_MODE: Readonly<{
|
|
749
|
+
NORMAL: "normal";
|
|
750
|
+
PERFORMANT: "performant";
|
|
751
|
+
}>;
|
|
748
752
|
export declare const BlockletStatus: Readonly<{
|
|
749
753
|
added: 0;
|
|
750
754
|
downloading: 1;
|
package/index.js
CHANGED
|
@@ -19,6 +19,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
19
19
|
// lib/index.ts
|
|
20
20
|
var lib_exports = {};
|
|
21
21
|
__export(lib_exports, {
|
|
22
|
+
ABT_NODE_KERNEL_OR_BLOCKLET_MODE: () => ABT_NODE_KERNEL_OR_BLOCKLET_MODE,
|
|
22
23
|
ALLOW_VERIFY_PROVIDERS: () => ALLOW_VERIFY_PROVIDERS,
|
|
23
24
|
APP_CONFIG_DIR: () => APP_CONFIG_DIR,
|
|
24
25
|
APP_CONFIG_FILE_PATH: () => APP_CONFIG_FILE_PATH,
|
|
@@ -862,6 +863,10 @@ var baseLanguages = [
|
|
|
862
863
|
var languages_default = SUPPORTED_LANGUAGES;
|
|
863
864
|
|
|
864
865
|
// lib/index.ts
|
|
866
|
+
var ABT_NODE_KERNEL_OR_BLOCKLET_MODE = Object.freeze({
|
|
867
|
+
NORMAL: "normal",
|
|
868
|
+
PERFORMANT: "performant"
|
|
869
|
+
});
|
|
865
870
|
var fromEntry = (entries) => (v) => {
|
|
866
871
|
const match = Object.entries(entries).find((x) => x[1] === Number(v));
|
|
867
872
|
return match ? match[0] : "unknown";
|
|
@@ -1203,6 +1208,7 @@ var SIG_VERSION = {
|
|
|
1203
1208
|
};
|
|
1204
1209
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1205
1210
|
0 && (module.exports = {
|
|
1211
|
+
ABT_NODE_KERNEL_OR_BLOCKLET_MODE,
|
|
1206
1212
|
ALLOW_VERIFY_PROVIDERS,
|
|
1207
1213
|
APP_CONFIG_DIR,
|
|
1208
1214
|
APP_CONFIG_FILE_PATH,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.45-beta-20250609-025419-7fd1f86c",
|
|
7
7
|
"description": "Blocklet constants",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"type": "commonjs",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"ts-jest": "^29.2.5",
|
|
37
37
|
"typescript": "^5.6.3"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "0457b82da528653a1b903149ea1fb1966c31bee3"
|
|
40
40
|
}
|