mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
|
|
import lunr from 'lunr'
|
|
|
|
// Package Search using Lunr
|
|
export default lunr(function () {
|
|
this.field('name');
|
|
this.field('version');
|
|
this.field('repo');
|
|
this.field('component');
|
|
|
|
package_data.forEach(function (pkg) {
|
|
this.add(pkg);
|
|
}, this);
|
|
})
|