@fulmenhq/tsfulmen 0.3.1 → 0.3.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 +9 -0
- package/config/crucible-ts/repository/app-identity/app-identity.example.yaml +8 -0
- package/config/crucible-ts/repository/app-identity/fixtures/valid/typescript-package.yaml +17 -0
- package/config/crucible-ts/repository/app-identity/parity-snapshot.json +28 -0
- package/config/crucible-ts/taxonomy/metrics.yaml +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/reports/license-inventory.csv +1 -1
- package/package.json +1 -1
- package/schemas/crucible-ts/config/repository/app-identity/v1.0.0/app-identity.schema.json +34 -0
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,15 @@ _No unreleased changes._
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
+
## [0.3.2] - 2026-06-17
|
|
18
|
+
|
|
19
|
+
> **Patch — app-identity follow-up.** Syncs the Crucible SSOT to v0.4.14 (which adds the formal `metadata.typescript` app-identity section) and promotes tsfulmen's interim custom `metadata.console_scripts` field to it. No code or behavior change; the only published delta is the refreshed bundled `crucible-ts` schemas. Full details in `docs/releases/v0.3.2.md`.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- **Synced Crucible SSOT `v0.4.13 → v0.4.14`** (`.goneat/ssot-consumer.yaml` ref). Refreshes the bundled app-identity assets under `schemas/crucible-ts`, `config/crucible-ts`, and `docs/crucible-ts` — the schema now carries the optional `metadata.typescript` object (npm analogue of `metadata.python`: `package_name` + `console_scripts → package.json bin`), plus the `typescript-package` fixture and parity case.
|
|
24
|
+
- **Promoted `.fulmen/app.yaml` to `metadata.typescript`** — the package's three bins (`tsfulmen-schema`, `tsfulmen-signals`, `tsfulmen-prometheus`) move from the interim custom `metadata.console_scripts` field to the first-class `metadata.typescript` section now that Crucible defines it. (`.fulmen/app.yaml` is the repo's own identity and is not in the npm `files` payload.)
|
|
25
|
+
|
|
17
26
|
## [0.3.1] - 2026-06-15
|
|
18
27
|
|
|
19
28
|
> **Patch — compile-safety.** Makes tsfulmen safe to embed in `bun build --compile` single-file binaries. Fixes two blockers surfaced downstream by `forge-workhorse-tuvan`: the embedded CLIs shadowed the consumer's own program on import, and an eager WASM load crashed compiled binaries at startup. No breaking changes; Node engine floor unchanged (`>=22.12.0`). Shipped as five reviewed PRs (#13, #14, #15, #16, #17). Full details in `docs/releases/v0.3.1.md`.
|
|
@@ -37,6 +37,14 @@ metadata:
|
|
|
37
37
|
entry_point: percheron.cli:main
|
|
38
38
|
- name: percheron-validate
|
|
39
39
|
entry_point: percheron.validation:cli
|
|
40
|
+
# TypeScript/npm packaging metadata (for npm projects — alternative to python)
|
|
41
|
+
# typescript:
|
|
42
|
+
# # npm package name (scoped or unscoped)
|
|
43
|
+
# package_name: "@fulmenhq/tsfulmen"
|
|
44
|
+
# # Executable bin entries — map to package.json `bin`
|
|
45
|
+
# console_scripts:
|
|
46
|
+
# - name: tsfulmen-schema
|
|
47
|
+
# entry_point: ./dist/bin/schema-cli.js
|
|
40
48
|
|
|
41
49
|
# Additional custom fields allowed for extensibility
|
|
42
50
|
# custom_field: value
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Valid application identity exercising metadata.typescript (npm packaging)
|
|
2
|
+
app:
|
|
3
|
+
binary_name: tsfulmen
|
|
4
|
+
vendor: fulmenhq
|
|
5
|
+
env_prefix: TSFULMEN_
|
|
6
|
+
config_name: tsfulmen
|
|
7
|
+
description: TypeScript Fulmen SDK with developer CLIs
|
|
8
|
+
metadata:
|
|
9
|
+
license: MIT
|
|
10
|
+
repository_category: sdk
|
|
11
|
+
typescript:
|
|
12
|
+
package_name: "@fulmenhq/tsfulmen"
|
|
13
|
+
console_scripts:
|
|
14
|
+
- name: tsfulmen-schema
|
|
15
|
+
entry_point: ./dist/bin/schema-cli.js
|
|
16
|
+
- name: tsfulmen-signals
|
|
17
|
+
entry_point: ./dist/bin/signals-cli.js
|
|
@@ -73,6 +73,34 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"validation_result": "pass"
|
|
76
|
+
},
|
|
77
|
+
"typescript_package": {
|
|
78
|
+
"input_file": "fixtures/valid/typescript-package.yaml",
|
|
79
|
+
"expected_output": {
|
|
80
|
+
"binary_name": "tsfulmen",
|
|
81
|
+
"vendor": "fulmenhq",
|
|
82
|
+
"env_prefix": "TSFULMEN_",
|
|
83
|
+
"config_name": "tsfulmen",
|
|
84
|
+
"description": "TypeScript Fulmen SDK with developer CLIs",
|
|
85
|
+
"metadata": {
|
|
86
|
+
"license": "MIT",
|
|
87
|
+
"repository_category": "sdk",
|
|
88
|
+
"typescript": {
|
|
89
|
+
"package_name": "@fulmenhq/tsfulmen",
|
|
90
|
+
"console_scripts": [
|
|
91
|
+
{
|
|
92
|
+
"name": "tsfulmen-schema",
|
|
93
|
+
"entry_point": "./dist/bin/schema-cli.js"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "tsfulmen-signals",
|
|
97
|
+
"entry_point": "./dist/bin/signals-cli.js"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"validation_result": "pass"
|
|
76
104
|
}
|
|
77
105
|
},
|
|
78
106
|
"invalid": {
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,6 @@ import './types-DdoeE7F5.js';
|
|
|
12
12
|
* Provides ergonomic access to Crucible SSOT assets and core utilities
|
|
13
13
|
* for TypeScript/Node.js applications in the FulmenHQ ecosystem.
|
|
14
14
|
*/
|
|
15
|
-
declare const VERSION = "0.3.
|
|
15
|
+
declare const VERSION = "0.3.2";
|
|
16
16
|
|
|
17
17
|
export { VERSION };
|
package/dist/index.js
CHANGED
|
@@ -4388,7 +4388,7 @@ async function scanZip(archive, options) {
|
|
|
4388
4388
|
var FULPACK_VERSION = "1.0.0";
|
|
4389
4389
|
|
|
4390
4390
|
// src/index.ts
|
|
4391
|
-
var VERSION = "0.3.
|
|
4391
|
+
var VERSION = "0.3.2";
|
|
4392
4392
|
|
|
4393
4393
|
export { APP_IDENTITY_DIR, APP_IDENTITY_ENV_VAR, APP_IDENTITY_FILENAME, APP_IDENTITY_SCHEMA_ID, AppIdentityError, ArchiveFormat, DocScribeError, DocScribeParseError, DocScribeUnsupportedFormatError, ERROR_CODES, EntryType, FULPACK_VERSION, FulpackOperationError, MAX_ANCESTOR_SEARCH_DEPTH, Operation, VERSION, __internal, buildEnvVar, buildRuntimeInfo, checkDecompressionBomb, clearEmbeddedIdentity, clearIdentityCache, create, createFulpackError, detectFormat, extract, extractHeaders, extractMetadata, getBinaryName, getCachedIdentity, getConfigIdentifiers, getConfigName, getEmbeddedIdentity, getEnvPrefix, getEnvVar, getTelemetryNamespace, getVendor, hasEmbeddedIdentity, hasPathTraversal, info, inspectDocument, isAbsolutePath, loadIdentity, normalizeInput, parseFrontmatter, registerEmbeddedIdentity, scan, splitDocuments, stripFrontmatter, validatePath, verify };
|
|
4394
4394
|
//# sourceMappingURL=index.js.map
|