@aigne/platform-helpers 0.6.1 → 0.6.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 +7 -0
- package/lib/cjs/nodejs/index.browser.d.ts +1 -0
- package/lib/cjs/nodejs/index.browser.js +3 -0
- package/lib/cjs/nodejs/index.node.d.ts +1 -0
- package/lib/cjs/nodejs/index.node.js +4 -0
- package/lib/esm/nodejs/index.browser.d.ts +1 -0
- package/lib/esm/nodejs/index.browser.js +3 -0
- package/lib/esm/nodejs/index.node.d.ts +1 -0
- package/lib/esm/nodejs/index.node.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.2](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.6.1...platform-helpers-v0.6.2) (2025-08-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **cli:** log only once in loadAIGNE ([#357](https://github.com/AIGNE-io/aigne-framework/issues/357)) ([6e6d968](https://github.com/AIGNE-io/aigne-framework/commit/6e6d96814fbc87f210522ae16daf94c1f84f311a))
|
|
9
|
+
|
|
3
10
|
## [0.6.1](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.6.0...platform-helpers-v0.6.1) (2025-08-12)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.nodejs = void 0;
|
|
7
|
+
const node_crypto_1 = __importDefault(require("node:crypto"));
|
|
7
8
|
const node_fs_1 = __importDefault(require("node:fs"));
|
|
8
9
|
const promises_1 = __importDefault(require("node:fs/promises"));
|
|
9
10
|
const node_os_1 = __importDefault(require("node:os"));
|
|
@@ -32,4 +33,7 @@ exports.nodejs = {
|
|
|
32
33
|
get os() {
|
|
33
34
|
return node_os_1.default;
|
|
34
35
|
},
|
|
36
|
+
get crypto() {
|
|
37
|
+
return node_crypto_1.default;
|
|
38
|
+
},
|
|
35
39
|
};
|