@soulcraft/brainy 0.9.33 → 0.9.35
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 +16 -0
- package/README.md +3 -3
- package/dist/brainy.js +2 -2
- package/dist/brainy.min.js +1 -1
- package/dist/unified.js +2 -2
- package/dist/unified.min.js +1 -1
- package/dist/utils/tensorflowUtils.d.ts.map +1 -1
- package/dist/utils/version.d.ts +1 -1
- package/package.json +14 -13
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [0.9.34] - 2024-07-01
|
|
6
|
+
|
|
7
|
+
This is the initial changelog entry. Future releases will automatically update this file with release notes from GitHub.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Auto-generation of release notes for GitHub releases
|
|
11
|
+
- Auto-updating of CHANGELOG.md files for both main and CLI packages
|
|
12
|
+
- Display of release notes on npmjs.com through the CHANGELOG.md files
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Modified deployment scripts to ensure GitHub releases are created with auto-generated notes
|
|
16
|
+
- Updated package.json files to include CHANGELOG.md in published packages
|
package/README.md
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
<br/><br/>
|
|
4
4
|
|
|
5
5
|
[](LICENSE)
|
|
6
|
-
[](https://nodejs.org/)
|
|
7
|
+
[](https://www.typescriptlang.org/)
|
|
8
8
|
[](CONTRIBUTING.md)
|
|
9
|
-
[](https://www.npmjs.com/package/@soulcraft/brainy)
|
|
10
10
|
|
|
11
11
|
[//]: # ([](https://github.com/sodal-project/cartographer))
|
|
12
12
|
|
package/dist/brainy.js
CHANGED
|
@@ -2701,8 +2701,8 @@ function areWebWorkersAvailable() {
|
|
|
2701
2701
|
function areWorkerThreadsAvailableSync() {
|
|
2702
2702
|
if (!isNode())
|
|
2703
2703
|
return false;
|
|
2704
|
-
// In Node.js
|
|
2705
|
-
return parseInt(process.versions.node.split('.')[0]) >=
|
|
2704
|
+
// In Node.js 24.3.0+, worker_threads is always available
|
|
2705
|
+
return parseInt(process.versions.node.split('.')[0]) >= 24;
|
|
2706
2706
|
}
|
|
2707
2707
|
/**
|
|
2708
2708
|
* Determine if threading is available in the current environment
|