@@ -6,6 +6,7 @@ const filemap = require('./source');
6
6
const fs = require ( 'fs' ) ;
7
7
const pug = require ( 'pug' ) ;
8
8
const mongoose = require ( '../' ) ;
9
+ let { version } = require ( '../package.json' ) ;
9
10
10
11
const { marked : markdown } = require ( 'marked' ) ;
11
12
const highlight = require ( 'highlight.js' ) ;
@@ -15,10 +16,14 @@ markdown.setOptions({
15
16
}
16
17
} ) ;
17
18
19
+ // 5.13.5 -> 5.x, 6.8.2 -> 6.x, etc.
20
+ version = version . slice ( 0 , version . indexOf ( '.' ) ) + '.x' ;
21
+
18
22
const contentSchema = new mongoose . Schema ( {
19
23
title : { type : String , required : true } ,
20
24
body : { type : String , required : true } ,
21
- url : { type : String , required : true }
25
+ url : { type : String , required : true } ,
26
+ version : { type : String , required : true , default : version }
22
27
} ) ;
23
28
contentSchema . index ( { title : 'text' , body : 'text' } ) ;
24
29
const Content = mongoose . model ( 'Content' , contentSchema , 'Content' ) ;
@@ -28,7 +33,6 @@ const files = Object.keys(filemap);
28
33
29
34
for ( const filename of files ) {
30
35
const file = filemap [ filename ] ;
31
- console . log ( file )
32
36
if ( file . api ) {
33
37
// API docs are special, raw content is in the `docs` property
34
38
for ( const _class of file . docs ) {
@@ -115,13 +119,16 @@ run().catch(error => console.error(error.stack));
115
119
async function run ( ) {
116
120
await mongoose . connect ( config . uri , { dbName : 'mongoose' } ) ;
117
121
118
- await Content . deleteMany ( { } ) ;
122
+ await Content . deleteMany ( { version } ) ;
119
123
for ( const content of contents ) {
124
+ if ( version !== '6.x' ) {
125
+ content . url = `/docs/${ version } /docs${ content . url } ` ;
126
+ }
120
127
await content . save ( ) ;
121
128
}
122
129
123
130
const results = await Content .
124
- find ( { $text : { $search : 'validate' } } , { score : { $meta : 'textScore' } } ) .
131
+ find ( { $text : { $search : 'validate' } , version } , { score : { $meta : 'textScore' } } ) .
125
132
sort ( { score : { $meta : 'textScore' } } ) .
126
133
limit ( 10 ) ;
127
134
0 commit comments