@ya-modbus/device-profiler 0.4.1-refactor-scope-driver-packages.0
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 +21 -0
- package/LICENSE +674 -0
- package/README.md +69 -0
- package/dist/bin/profile.d.ts +9 -0
- package/dist/bin/profile.d.ts.map +1 -0
- package/dist/bin/profile.js +10 -0
- package/dist/bin/profile.js.map +1 -0
- package/dist/src/cli.d.ts +27 -0
- package/dist/src/cli.d.ts.map +1 -0
- package/dist/src/cli.js +45 -0
- package/dist/src/cli.js.map +1 -0
- package/dist/src/console-formatter.d.ts +20 -0
- package/dist/src/console-formatter.d.ts.map +1 -0
- package/dist/src/console-formatter.js +36 -0
- package/dist/src/console-formatter.js.map +1 -0
- package/dist/src/constants.d.ts +18 -0
- package/dist/src/constants.d.ts.map +1 -0
- package/dist/src/constants.js +18 -0
- package/dist/src/constants.js.map +1 -0
- package/dist/src/error-classifier.d.ts +24 -0
- package/dist/src/error-classifier.d.ts.map +1 -0
- package/dist/src/error-classifier.js +43 -0
- package/dist/src/error-classifier.js.map +1 -0
- package/dist/src/index.d.ts +9 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +9 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/program.d.ts +7 -0
- package/dist/src/program.d.ts.map +1 -0
- package/dist/src/program.js +75 -0
- package/dist/src/program.js.map +1 -0
- package/dist/src/read-tester.d.ts +40 -0
- package/dist/src/read-tester.d.ts.map +1 -0
- package/dist/src/read-tester.js +52 -0
- package/dist/src/read-tester.js.map +1 -0
- package/dist/src/register-scanner.d.ts +51 -0
- package/dist/src/register-scanner.d.ts.map +1 -0
- package/dist/src/register-scanner.js +68 -0
- package/dist/src/register-scanner.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## 0.4.1-refactor-scope-driver-packages.0 (2026-01-04)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **release:** bump versions to 0.2.0 to bypass npm 24h block ([#148](https://github.com/groupsky/ya-modbus/issues/148)) ([98d6fd6](https://github.com/groupsky/ya-modbus/commit/98d6fd666322fb647390d851c43ba0cd8a02486d))
|
|
11
|
+
* **release:** revert failed release and add missing publishConfig ([#147](https://github.com/groupsky/ya-modbus/issues/147)) ([8cbd4ba](https://github.com/groupsky/ya-modbus/commit/8cbd4baf9c140c8ef10080947ddd566014f32c77))
|
|
12
|
+
* **release:** revert failed release and cleanup tags ([#145](https://github.com/groupsky/ya-modbus/issues/145)) ([ba85dd9](https://github.com/groupsky/ya-modbus/commit/ba85dd9518f85705bc3f87349b097f004a0e90a1)), closes [#143](https://github.com/groupsky/ya-modbus/issues/143) [#144](https://github.com/groupsky/ya-modbus/issues/144)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **device-profiler:** implement core register scanning functionality ([#128](https://github.com/groupsky/ya-modbus/issues/128)) ([4526824](https://github.com/groupsky/ya-modbus/commit/4526824b26823f58d5a99ae37dc32ac73360fc41)), closes [#117](https://github.com/groupsky/ya-modbus/issues/117)
|
|
17
|
+
|
|
18
|
+
### Reverts
|
|
19
|
+
|
|
20
|
+
* Revert "chore(release): publish packages" ([94fd33c](https://github.com/groupsky/ya-modbus/commit/94fd33ca0caa158c37a1a43609638843d08c792b))
|
|
21
|
+
* Revert "chore(release): publish packages" ([b613837](https://github.com/groupsky/ya-modbus/commit/b6138375978fdebfd57e645367f3fc8011f0452f))
|