@neocompose/cli 0.5.1 → 0.5.2
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 +8 -0
- package/dist/neo.mjs +23 -21
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.2] - 2026-07-18
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Stop `neo pull` from emitting inherited `@system` annotations on member
|
|
8
|
+
overrides and abstract implementations whose own records are not system
|
|
9
|
+
protected.
|
|
10
|
+
|
|
3
11
|
## [0.5.1] - 2026-07-18
|
|
4
12
|
|
|
5
13
|
### Fixed
|
package/dist/neo.mjs
CHANGED
|
@@ -1513,7 +1513,9 @@ function memberFromDocument(record3, members, owners, classNames, context) {
|
|
|
1513
1513
|
required: booleanValue(field("required", false), record3, "required"),
|
|
1514
1514
|
defaultValue,
|
|
1515
1515
|
overrideOf,
|
|
1516
|
-
|
|
1516
|
+
// System protection belongs to the declaration record. An override is
|
|
1517
|
+
// user-authored unless its own document explicitly marks it as system.
|
|
1518
|
+
system: systemFromDocument(data.system, record3, "system"),
|
|
1517
1519
|
storage: normalizedStorage(field("storage", null), record3),
|
|
1518
1520
|
storageKey: normalizedStorageKey(field("storageKey", null), record3)
|
|
1519
1521
|
};
|
|
@@ -30040,27 +30042,27 @@ var init_project_files = __esm({
|
|
|
30040
30042
|
}
|
|
30041
30043
|
});
|
|
30042
30044
|
|
|
30043
|
-
//
|
|
30045
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/regex.js
|
|
30044
30046
|
var regex_default;
|
|
30045
30047
|
var init_regex = __esm({
|
|
30046
|
-
"
|
|
30048
|
+
"../../../neo-compose/node_modules/uuid/dist-node/regex.js"() {
|
|
30047
30049
|
regex_default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i;
|
|
30048
30050
|
}
|
|
30049
30051
|
});
|
|
30050
30052
|
|
|
30051
|
-
//
|
|
30053
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/validate.js
|
|
30052
30054
|
function validate(uuid) {
|
|
30053
30055
|
return typeof uuid === "string" && regex_default.test(uuid);
|
|
30054
30056
|
}
|
|
30055
30057
|
var validate_default;
|
|
30056
30058
|
var init_validate2 = __esm({
|
|
30057
|
-
"
|
|
30059
|
+
"../../../neo-compose/node_modules/uuid/dist-node/validate.js"() {
|
|
30058
30060
|
init_regex();
|
|
30059
30061
|
validate_default = validate;
|
|
30060
30062
|
}
|
|
30061
30063
|
});
|
|
30062
30064
|
|
|
30063
|
-
//
|
|
30065
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/parse.js
|
|
30064
30066
|
function parse(uuid) {
|
|
30065
30067
|
if (!validate_default(uuid)) {
|
|
30066
30068
|
throw TypeError("Invalid UUID");
|
|
@@ -30070,19 +30072,19 @@ function parse(uuid) {
|
|
|
30070
30072
|
}
|
|
30071
30073
|
var parse_default;
|
|
30072
30074
|
var init_parse = __esm({
|
|
30073
|
-
"
|
|
30075
|
+
"../../../neo-compose/node_modules/uuid/dist-node/parse.js"() {
|
|
30074
30076
|
init_validate2();
|
|
30075
30077
|
parse_default = parse;
|
|
30076
30078
|
}
|
|
30077
30079
|
});
|
|
30078
30080
|
|
|
30079
|
-
//
|
|
30081
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/stringify.js
|
|
30080
30082
|
function unsafeStringify(arr, offset = 0) {
|
|
30081
30083
|
return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
|
|
30082
30084
|
}
|
|
30083
30085
|
var byteToHex;
|
|
30084
30086
|
var init_stringify = __esm({
|
|
30085
|
-
"
|
|
30087
|
+
"../../../neo-compose/node_modules/uuid/dist-node/stringify.js"() {
|
|
30086
30088
|
byteToHex = [];
|
|
30087
30089
|
for (let i = 0; i < 256; ++i) {
|
|
30088
30090
|
byteToHex.push((i + 256).toString(16).slice(1));
|
|
@@ -30090,18 +30092,18 @@ var init_stringify = __esm({
|
|
|
30090
30092
|
}
|
|
30091
30093
|
});
|
|
30092
30094
|
|
|
30093
|
-
//
|
|
30095
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/rng.js
|
|
30094
30096
|
function rng() {
|
|
30095
30097
|
return crypto.getRandomValues(rnds8);
|
|
30096
30098
|
}
|
|
30097
30099
|
var rnds8;
|
|
30098
30100
|
var init_rng = __esm({
|
|
30099
|
-
"
|
|
30101
|
+
"../../../neo-compose/node_modules/uuid/dist-node/rng.js"() {
|
|
30100
30102
|
rnds8 = new Uint8Array(16);
|
|
30101
30103
|
}
|
|
30102
30104
|
});
|
|
30103
30105
|
|
|
30104
|
-
//
|
|
30106
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/v35.js
|
|
30105
30107
|
function stringToBytes(str) {
|
|
30106
30108
|
str = unescape(encodeURIComponent(str));
|
|
30107
30109
|
const bytes = new Uint8Array(str.length);
|
|
@@ -30139,7 +30141,7 @@ function v35(version, hash, value, namespace, buf, offset) {
|
|
|
30139
30141
|
}
|
|
30140
30142
|
var DNS, URL2;
|
|
30141
30143
|
var init_v35 = __esm({
|
|
30142
|
-
"
|
|
30144
|
+
"../../../neo-compose/node_modules/uuid/dist-node/v35.js"() {
|
|
30143
30145
|
init_parse();
|
|
30144
30146
|
init_stringify();
|
|
30145
30147
|
DNS = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
|
|
@@ -30147,7 +30149,7 @@ var init_v35 = __esm({
|
|
|
30147
30149
|
}
|
|
30148
30150
|
});
|
|
30149
30151
|
|
|
30150
|
-
//
|
|
30152
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/v4.js
|
|
30151
30153
|
function v4(options, buf, offset) {
|
|
30152
30154
|
if (!buf && !options && crypto.randomUUID) {
|
|
30153
30155
|
return crypto.randomUUID();
|
|
@@ -30176,14 +30178,14 @@ function _v4(options, buf, offset) {
|
|
|
30176
30178
|
}
|
|
30177
30179
|
var v4_default;
|
|
30178
30180
|
var init_v4 = __esm({
|
|
30179
|
-
"
|
|
30181
|
+
"../../../neo-compose/node_modules/uuid/dist-node/v4.js"() {
|
|
30180
30182
|
init_rng();
|
|
30181
30183
|
init_stringify();
|
|
30182
30184
|
v4_default = v4;
|
|
30183
30185
|
}
|
|
30184
30186
|
});
|
|
30185
30187
|
|
|
30186
|
-
//
|
|
30188
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/sha1.js
|
|
30187
30189
|
import { createHash as createHash2 } from "node:crypto";
|
|
30188
30190
|
function sha1(bytes) {
|
|
30189
30191
|
if (Array.isArray(bytes)) {
|
|
@@ -30195,18 +30197,18 @@ function sha1(bytes) {
|
|
|
30195
30197
|
}
|
|
30196
30198
|
var sha1_default;
|
|
30197
30199
|
var init_sha1 = __esm({
|
|
30198
|
-
"
|
|
30200
|
+
"../../../neo-compose/node_modules/uuid/dist-node/sha1.js"() {
|
|
30199
30201
|
sha1_default = sha1;
|
|
30200
30202
|
}
|
|
30201
30203
|
});
|
|
30202
30204
|
|
|
30203
|
-
//
|
|
30205
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/v5.js
|
|
30204
30206
|
function v5(value, namespace, buf, offset) {
|
|
30205
30207
|
return v35(80, sha1_default, value, namespace, buf, offset);
|
|
30206
30208
|
}
|
|
30207
30209
|
var v5_default;
|
|
30208
30210
|
var init_v5 = __esm({
|
|
30209
|
-
"
|
|
30211
|
+
"../../../neo-compose/node_modules/uuid/dist-node/v5.js"() {
|
|
30210
30212
|
init_sha1();
|
|
30211
30213
|
init_v35();
|
|
30212
30214
|
v5.DNS = DNS;
|
|
@@ -30215,9 +30217,9 @@ var init_v5 = __esm({
|
|
|
30215
30217
|
}
|
|
30216
30218
|
});
|
|
30217
30219
|
|
|
30218
|
-
//
|
|
30220
|
+
// ../../../neo-compose/node_modules/uuid/dist-node/index.js
|
|
30219
30221
|
var init_dist_node = __esm({
|
|
30220
|
-
"
|
|
30222
|
+
"../../../neo-compose/node_modules/uuid/dist-node/index.js"() {
|
|
30221
30223
|
init_v4();
|
|
30222
30224
|
init_v5();
|
|
30223
30225
|
}
|