Skip to content

Commit ecbeaa5

Browse files
authored
Merge pull request #1363 from danielpeintner/issue-1301
refactor: remove td-tools package
2 parents 53a9c66 + 415a50f commit ecbeaa5

File tree

65 files changed

+30
-3976
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+30
-3976
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ src/**/*.js
4545

4646
# ignore private packages
4747
packages/*
48-
!packages/td-tools
4948
!packages/core
5049
!packages/binding-file
5150
!packages/binding-http

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ To reduce the size of the installation from about 800 MByte down to about 200 MB
104104
- try `npm run unlock` from the project root before building
105105
- `sudo npm run link` does not work
106106
- try `npm run unlock` from the project root before calling `[sudo] npm run link`
107-
- try `npm link` in each package directory in this order: td-tools, core, binding-\*, cli, demo-servients
107+
- try `npm link` in each package directory in this order: core, binding-\*, cli, demo-servients
108108
- Error mesage for `npm link @node-wot/<module>`
109109
`ELOOP: too many symbolic links encountered, stat '/usr/lib/node_modules/@node-wot/<module>`
110110
1. Run `npm run link` in `thingweb.node-wot` again

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -343,15 +343,6 @@ cs.addCodec(new MyCodec("application/myType"));
343343

344344
```
345345

346-
### TD Tooling
347-
348-
The package [td-tools](https://github.com/eclipse-thingweb/node-wot/tree/master/packages/td-tools) provides utilities around Thing Description (TD) tooling:
349-
350-
- Thing Description (TD) parsing
351-
- Thing Model (TM) tooling
352-
- [Asset Interface Description (AID)](https://github.com/eclipse-thingweb/node-wot/tree/master/packages/td-tools/src/util) utility
353-
- ...
354-
355346
### Logging
356347

357348
Logging in node-wot is implemented via the [`debug`](https://www.npmjs.com/package/debug) package.

package-lock.json

Lines changed: 18 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
"ncu:opcua": "npx -y npm-check-updates -u --deep --dep=dev,prod -f \"node-opcua*\" -t newest"
4040
},
4141
"workspaces": [
42-
"./packages/td-tools",
4342
"./packages/core",
4443
"./packages/binding-*",
4544
"./packages/cli",

packages/binding-coap/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"rootDir": "src"
66
},
77
"include": ["src/**/*"],
8-
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
8+
"references": [{ "path": "../core" }]
99
}

packages/binding-file/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"rootDir": "src"
66
},
77
"include": ["src/**/*"],
8-
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
8+
"references": [{ "path": "../core" }]
99
}

packages/binding-http/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"rootDir": "src"
66
},
77
"include": ["src/**/*"],
8-
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
8+
"references": [{ "path": "../core" }]
99
}

packages/binding-mbus/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"rootDir": "src"
66
},
77
"include": ["src/**/*"],
8-
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
8+
"references": [{ "path": "../core" }]
99
}

packages/binding-modbus/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"rootDir": "src"
66
},
77
"include": ["src/**/*"],
8-
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
8+
"references": [{ "path": "../core" }]
99
}

0 commit comments

Comments
 (0)