Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ src/**/*.js

# ignore private packages
packages/*
!packages/td-tools
!packages/core
!packages/binding-file
!packages/binding-http
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ To reduce the size of the installation from about 800 MByte down to about 200 MB
- try `npm run unlock` from the project root before building
- `sudo npm run link` does not work
- try `npm run unlock` from the project root before calling `[sudo] npm run link`
- try `npm link` in each package directory in this order: td-tools, core, binding-\*, cli, demo-servients
- try `npm link` in each package directory in this order: core, binding-\*, cli, demo-servients
- Error mesage for `npm link @node-wot/<module>`
`ELOOP: too many symbolic links encountered, stat '/usr/lib/node_modules/@node-wot/<module>`
1. Run `npm run link` in `thingweb.node-wot` again
Expand Down
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,15 +343,6 @@ cs.addCodec(new MyCodec("application/myType"));

```

### TD Tooling

The package [td-tools](https://github.com/eclipse-thingweb/node-wot/tree/master/packages/td-tools) provides utilities around Thing Description (TD) tooling:

- Thing Description (TD) parsing
- Thing Model (TM) tooling
- [Asset Interface Description (AID)](https://github.com/eclipse-thingweb/node-wot/tree/master/packages/td-tools/src/util) utility
- ...

### Logging

Logging in node-wot is implemented via the [`debug`](https://www.npmjs.com/package/debug) package.
Expand Down
103 changes: 18 additions & 85 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"ncu:opcua": "npx -y npm-check-updates -u --deep --dep=dev,prod -f \"node-opcua*\" -t newest"
},
"workspaces": [
"./packages/td-tools",
"./packages/core",
"./packages/binding-*",
"./packages/cli",
Expand Down
2 changes: 1 addition & 1 deletion packages/binding-coap/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-file/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-http/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-mbus/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-modbus/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-mqtt/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-netconf/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-opcua/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"skipLibCheck": true
},
"include": ["./src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
2 changes: 1 addition & 1 deletion packages/binding-websockets/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }, { "path": "../core" }]
"references": [{ "path": "../core" }]
}
3 changes: 0 additions & 3 deletions packages/browser-bundle/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
},
"include": ["index.ts"],
"references": [
{
"path": "../td-tools"
},
{
"path": "../core"
},
Expand Down
1 change: 0 additions & 1 deletion packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
},
"include": ["src/**/*", "src/*.json"],
"references": [
{ "path": "../td-tools" },
{ "path": "../core" },
{ "path": "../binding-http" },
{ "path": "../binding-file" },
Expand Down
2 changes: 1 addition & 1 deletion packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"rootDir": "src"
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }]
"references": []
}
2 changes: 1 addition & 1 deletion packages/examples/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"removeComments": false
},
"include": ["src/**/*"],
"references": [{ "path": "../td-tools" }]
"references": []
}
4 changes: 0 additions & 4 deletions packages/td-tools/.eslintrc.json

This file was deleted.

57 changes: 0 additions & 57 deletions packages/td-tools/README.md

This file was deleted.

Loading