ads-client 2.0.0-beta.3 → 2.0.0-beta.4
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 +13 -0
- package/README.md +505 -258
- package/dist/ads-client.d.ts +280 -69
- package/dist/ads-client.js +332 -76
- package/dist/ads-client.js.map +1 -1
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ads-client",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.4",
|
|
4
4
|
"description": "Beckhoff TwinCAT ADS client library for Node.js (unofficial). Connect to a Beckhoff TwinCAT automation system using the ADS protocol from a Node.js app.",
|
|
5
5
|
"main": "./dist/ads-client.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"test": "jest --runInBand",
|
|
8
|
-
"test-
|
|
9
|
-
"test-watch": "npm run test -- --watch --config test/jest.config.js",
|
|
7
|
+
"test-tc3": "jest --runInBand TC3/ads-client.test.js",
|
|
8
|
+
"test-tc2": "jest --runInBand TC2/ads-client.test.js",
|
|
10
9
|
"build": "tsc",
|
|
11
10
|
"watch": "tsc -w",
|
|
12
11
|
"create-docs": "npx typedoc"
|