@travetto/doc 6.0.1 → 7.0.0-rc.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/doc",
3
- "version": "6.0.1",
3
+ "version": "7.0.0-rc.1",
4
4
  "description": "Documentation support for the Travetto framework",
5
5
  "keywords": [
6
6
  "docs",
@@ -24,12 +24,12 @@
24
24
  "directory": "module/doc"
25
25
  },
26
26
  "dependencies": {
27
- "@travetto/runtime": "^6.0.1",
27
+ "@travetto/runtime": "^7.0.0-rc.1",
28
28
  "@types/prismjs": "^1.26.5",
29
29
  "prismjs": "^1.30.0"
30
30
  },
31
31
  "peerDependencies": {
32
- "@travetto/cli": "^6.0.1"
32
+ "@travetto/cli": "^7.0.0-rc.1"
33
33
  },
34
34
  "peerDependenciesMeta": {
35
35
  "@travetto/cli": {
@@ -67,10 +67,6 @@ export const MOD_MAPPING = {
67
67
  name: '@travetto/email-nodemailer', folder: '@travetto/email-nodemailer', displayName: 'Email Nodemailer Support',
68
68
  description: 'Email transmission module.'
69
69
  },
70
- Eslint: {
71
- name: '@travetto/eslint', folder: '@travetto/eslint', displayName: 'ES Linting Rules',
72
- description: 'ES Linting Rules'
73
- },
74
70
  Image: {
75
71
  name: '@travetto/image', folder: '@travetto/image', displayName: 'Image',
76
72
  description: 'Image support, resizing, and optimization'
@@ -203,14 +199,10 @@ export const MOD_MAPPING = {
203
199
  name: '@travetto/web-connect', folder: '@travetto/web-connect', displayName: 'Web Connect Support',
204
200
  description: 'Web integration for Connect-Like Resources'
205
201
  },
206
- WebHttpServer: {
207
- name: '@travetto/web-http-server', folder: '@travetto/web-http-server', displayName: 'Web HTTP Server Support',
202
+ WebHttp: {
203
+ name: '@travetto/web-http', folder: '@travetto/web-http', displayName: 'Web HTTP Server Support',
208
204
  description: 'Web HTTP Server Support'
209
205
  },
210
- WebNode: {
211
- name: '@travetto/web-node', folder: '@travetto/web-node', displayName: 'Node Web Server',
212
- description: 'Node provider for the travetto web module.'
213
- },
214
206
  WebRpc: {
215
207
  name: '@travetto/web-rpc', folder: '@travetto/web-rpc', displayName: 'Web RPC Support',
216
208
  description: 'RPC support for a Web Application'
package/src/util/file.ts CHANGED
@@ -110,7 +110,7 @@ export class DocFileUtil {
110
110
  let found = false;
111
111
  if (start > 0) {
112
112
  for (let i = start - 1; i > start - 3; i--) {
113
- if (lines[i].includes('@augments')) {
113
+ if (lines[i].includes('@kind decorator')) {
114
114
  found = true;
115
115
  break;
116
116
  }