@teqfw/di 1.0.2 → 1.1.1
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 +30 -0
- package/package.json +6 -2
- package/teqfw.json +8 -0
- package/types.d.ts +19 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
- Added missing published files (`CHANGELOG.md`, `teqfw.json`, `types.d.ts`) and declared `types.d.ts` in `package.json`.
|
|
6
|
+
|
|
7
|
+
## 1.1.0
|
|
8
|
+
|
|
9
|
+
- Added ADSM cognitive context documentation and reporting structure under `ctx/`.
|
|
10
|
+
- Added type map documentation and a `types.d.ts` namespace-to-source mapping for IDE support.
|
|
11
|
+
- Updated `.npmignore` to ignore `output.md` artifacts.
|
|
12
|
+
|
|
13
|
+
## 1.0.2
|
|
14
|
+
|
|
15
|
+
- Added ability to import the Replace preprocessor chunk via package subpath (`./pre/replace`).
|
|
16
|
+
- Updated `.npmignore` to exclude development artifacts (`ctx/`, logs, test files) and ensure clean npm package contents.
|
|
17
|
+
- Improved ignore patterns to prevent accidental publication of internal files.
|
|
18
|
+
|
|
19
|
+
## 1.0.1
|
|
20
|
+
|
|
21
|
+
- Prepare npm package for publication.
|
|
22
|
+
- Add distribution build outputs to package files and specify entry points.
|
|
23
|
+
|
|
24
|
+
## 1.0.0
|
|
25
|
+
|
|
26
|
+
- Started changelog for version 1.0.0.
|
|
27
|
+
- Added AGENTS.md with English-only guidelines and link to PHILOSOPHY.md.
|
|
28
|
+
- Switched tests from Mocha to Node's built-in runner.
|
|
29
|
+
- Updated package scripts and removed Mocha dependency.
|
|
30
|
+
- Documented breaking changes for v1.0.0: the container can no longer access itself, configuration must occur in the Composition Root, and legacy versions live in the `forerunner` branch.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teqfw/di",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Dependency Injection container for ES6 modules that works in both browser and Node.js apps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dependency injection",
|
|
@@ -23,11 +23,15 @@
|
|
|
23
23
|
"files": [
|
|
24
24
|
"dist/",
|
|
25
25
|
"src/",
|
|
26
|
+
"CHANGELOG.md",
|
|
26
27
|
"LICENSE",
|
|
27
|
-
"README.md"
|
|
28
|
+
"README.md",
|
|
29
|
+
"teqfw.json",
|
|
30
|
+
"types.d.ts"
|
|
28
31
|
],
|
|
29
32
|
"main": "dist/umd.js",
|
|
30
33
|
"module": "dist/esm.js",
|
|
34
|
+
"types": "types.d.ts",
|
|
31
35
|
"exports": {
|
|
32
36
|
".": {
|
|
33
37
|
"import": "./dist/esm.js",
|
package/teqfw.json
ADDED
package/types.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type TeqFw_Di_Api_Container_Parser = import("./src/Api/Container/Parser.js").default;
|
|
2
|
+
export type TeqFw_Di_Api_Container_Parser_Chunk = import("./src/Api/Container/Parser/Chunk.js").default;
|
|
3
|
+
export type TeqFw_Di_Api_Container_PostProcessor = import("./src/Api/Container/PostProcessor.js").default;
|
|
4
|
+
export type TeqFw_Di_Api_Container_PostProcessor_Chunk = import("./src/Api/Container/PostProcessor/Chunk.js").default;
|
|
5
|
+
export type TeqFw_Di_Api_Container_PreProcessor = import("./src/Api/Container/PreProcessor.js").default;
|
|
6
|
+
export type TeqFw_Di_Api_Container_PreProcessor_Chunk = import("./src/Api/Container/PreProcessor/Chunk.js").default;
|
|
7
|
+
export type TeqFw_Di_Api_Container_Resolver = import("./src/Api/Container/Resolver.js").default;
|
|
8
|
+
export type TeqFw_Di_Container = import("./src/Container.js").default;
|
|
9
|
+
export type TeqFw_Di_Container_A_Composer = import("./src/Container/A/Composer.js").default;
|
|
10
|
+
export type TeqFw_Di_Container_A_Composer_A_SpecParser = import("./src/Container/A/Composer/A/SpecParser.js").default;
|
|
11
|
+
export type TeqFw_Di_Container_A_Parser_Chunk_Def = import("./src/Container/A/Parser/Chunk/Def.js").default;
|
|
12
|
+
export type TeqFw_Di_Container_A_Parser_Chunk_V02X = import("./src/Container/A/Parser/Chunk/V02X.js").default;
|
|
13
|
+
export type TeqFw_Di_Container_Parser = import("./src/Container/Parser.js").default;
|
|
14
|
+
export type TeqFw_Di_Container_PostProcessor = import("./src/Container/PostProcessor.js").default;
|
|
15
|
+
export type TeqFw_Di_Container_PreProcessor = import("./src/Container/PreProcessor.js").default;
|
|
16
|
+
export type TeqFw_Di_Container_Resolver = import("./src/Container/Resolver.js").default;
|
|
17
|
+
export type TeqFw_Di_Defs = import("./src/Defs.js").default;
|
|
18
|
+
export type TeqFw_Di_DepId = import("./src/DepId.js").default;
|
|
19
|
+
export type TeqFw_Di_Pre_Replace = import("./src/Pre/Replace.js").default;
|