@travetto/doc 5.0.0-rc.9 → 5.0.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 +3 -3
- package/src/mapping/lib-mapping.ts +1 -0
- package/src/mapping/mod-mapping.ts +16 -12
- package/src/util/file.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/doc",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.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": "^5.0.
|
|
27
|
+
"@travetto/runtime": "^5.0.1",
|
|
28
28
|
"@types/prismjs": "^1.26.4",
|
|
29
29
|
"prismjs": "^1.29.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@travetto/cli": "^5.0.
|
|
32
|
+
"@travetto/cli": "^5.0.1"
|
|
33
33
|
},
|
|
34
34
|
"peerDependenciesMeta": {
|
|
35
35
|
"@travetto/cli": {
|
|
@@ -82,6 +82,7 @@ export const LIB_MAPPING = {
|
|
|
82
82
|
ImageMagick: { title: 'ImageMagick', href: 'https://imagemagick.org/index.php' },
|
|
83
83
|
PngQuant: { title: 'pngquant', href: 'https://pngquant.org/' },
|
|
84
84
|
JpegOptim: { title: 'Jpegoptim', href: 'https://github.com/tjko/jpegoptim' },
|
|
85
|
+
Sharp: { title: 'sharp', href: 'https://sharp.pixelplumbing.com/' },
|
|
85
86
|
|
|
86
87
|
// Dbs
|
|
87
88
|
MongoDB: { title: 'mongodb', href: 'https://mongodb.com' },
|
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
export const MOD_MAPPING = {
|
|
2
|
-
Asset: {
|
|
3
|
-
name: '@travetto/asset', folder: '@travetto/asset', displayName: 'Asset',
|
|
4
|
-
description: 'Modular library for storing and retrieving binary assets'
|
|
5
|
-
},
|
|
6
|
-
AssetRest: {
|
|
7
|
-
name: '@travetto/asset-rest', folder: '@travetto/asset-rest', displayName: 'Asset Rest Support',
|
|
8
|
-
description: 'Provides integration between the travetto asset and rest module.'
|
|
9
|
-
},
|
|
10
2
|
Auth: {
|
|
11
3
|
name: '@travetto/auth', folder: '@travetto/auth', displayName: 'Authentication',
|
|
12
4
|
description: 'Authentication scaffolding for the Travetto framework'
|
|
@@ -31,10 +23,6 @@ export const MOD_MAPPING = {
|
|
|
31
23
|
name: '@travetto/auth-rest-session', folder: '@travetto/auth-rest-session', displayName: 'Rest Auth Session',
|
|
32
24
|
description: 'Rest authentication session integration support for the Travetto framework'
|
|
33
25
|
},
|
|
34
|
-
Base: {
|
|
35
|
-
name: '@travetto/runtime', folder: '@travetto/runtime', displayName: 'Base',
|
|
36
|
-
description: 'Environment config and common utilities for travetto applications.'
|
|
37
|
-
},
|
|
38
26
|
Cache: {
|
|
39
27
|
name: '@travetto/cache', folder: '@travetto/cache', displayName: 'Caching',
|
|
40
28
|
description: 'Caching functionality with decorators for declarative use.'
|
|
@@ -115,10 +103,18 @@ export const MOD_MAPPING = {
|
|
|
115
103
|
name: '@travetto/model-elasticsearch', folder: '@travetto/model-elasticsearch', displayName: 'Elasticsearch Model Source',
|
|
116
104
|
description: 'Elasticsearch backing for the travetto model module, with real-time modeling support for Elasticsearch mappings.'
|
|
117
105
|
},
|
|
106
|
+
ModelFile: {
|
|
107
|
+
name: '@travetto/model-file', folder: '@travetto/model-file', displayName: 'File Model Support',
|
|
108
|
+
description: 'File system backing for the travetto model module.'
|
|
109
|
+
},
|
|
118
110
|
ModelFirestore: {
|
|
119
111
|
name: '@travetto/model-firestore', folder: '@travetto/model-firestore', displayName: 'Firestore Model Support',
|
|
120
112
|
description: 'Firestore backing for the travetto model module.'
|
|
121
113
|
},
|
|
114
|
+
ModelMemory: {
|
|
115
|
+
name: '@travetto/model-memory', folder: '@travetto/model-memory', displayName: 'Memory Model Support',
|
|
116
|
+
description: 'Memory backing for the travetto model module.'
|
|
117
|
+
},
|
|
122
118
|
ModelMongo: {
|
|
123
119
|
name: '@travetto/model-mongo', folder: '@travetto/model-mongo', displayName: 'MongoDB Model Support',
|
|
124
120
|
description: 'Mongo backing for the travetto model module.'
|
|
@@ -135,6 +131,10 @@ export const MOD_MAPPING = {
|
|
|
135
131
|
name: '@travetto/model-query', folder: '@travetto/model-query', displayName: 'Data Model Querying',
|
|
136
132
|
description: 'Datastore abstraction for advanced query support.'
|
|
137
133
|
},
|
|
134
|
+
ModelQueryLanguage: {
|
|
135
|
+
name: '@travetto/model-query-language', folder: '@travetto/model-query-language', displayName: 'Data Model Query Language',
|
|
136
|
+
description: 'Datastore query language.'
|
|
137
|
+
},
|
|
138
138
|
ModelRedis: {
|
|
139
139
|
name: '@travetto/model-redis', folder: '@travetto/model-redis', displayName: 'Redis Model Support',
|
|
140
140
|
description: 'Redis backing for the travetto model module.'
|
|
@@ -219,6 +219,10 @@ export const MOD_MAPPING = {
|
|
|
219
219
|
name: '@travetto/rest-upload', folder: '@travetto/rest-upload', displayName: 'Rest Upload Support',
|
|
220
220
|
description: 'Provides integration between the travetto asset and rest module.'
|
|
221
221
|
},
|
|
222
|
+
Runtime: {
|
|
223
|
+
name: '@travetto/runtime', folder: '@travetto/runtime', displayName: 'Runtime',
|
|
224
|
+
description: 'Runtime for travetto applications.'
|
|
225
|
+
},
|
|
222
226
|
Scaffold: {
|
|
223
227
|
name: '@travetto/scaffold', folder: '@travetto/scaffold', displayName: 'App Scaffold',
|
|
224
228
|
description: 'App Scaffold for the Travetto framework'
|