@jbrowse/plugin-legacy-jbrowse 2.15.0 → 2.15.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.
|
@@ -1,4 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
2
25
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
27
|
};
|
|
@@ -6,13 +29,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
29
|
exports.default = JBrowse1TextSearchAdapterF;
|
|
7
30
|
const TextSearchAdapterType_1 = __importDefault(require("@jbrowse/core/pluggableElementTypes/TextSearchAdapterType"));
|
|
8
31
|
// locals
|
|
9
|
-
const JBrowse1TextSearchAdapter_1 = __importDefault(require("./JBrowse1TextSearchAdapter"));
|
|
10
32
|
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
11
33
|
function JBrowse1TextSearchAdapterF(pluginManager) {
|
|
12
34
|
pluginManager.addTextSearchAdapterType(() => new TextSearchAdapterType_1.default({
|
|
13
35
|
name: 'JBrowse1TextSearchAdapter',
|
|
14
36
|
configSchema: configSchema_1.default,
|
|
15
|
-
AdapterClass: JBrowse1TextSearchAdapter_1.default,
|
|
16
37
|
description: 'A JBrowse 1 text search adapter',
|
|
38
|
+
getAdapterClass: () => Promise.resolve().then(() => __importStar(require('./JBrowse1TextSearchAdapter'))).then(t => t.default),
|
|
17
39
|
}));
|
|
18
40
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import TextSearchAdapterType from '@jbrowse/core/pluggableElementTypes/TextSearchAdapterType';
|
|
2
2
|
// locals
|
|
3
|
-
import AdapterClass from './JBrowse1TextSearchAdapter';
|
|
4
3
|
import configSchema from './configSchema';
|
|
5
4
|
export default function JBrowse1TextSearchAdapterF(pluginManager) {
|
|
6
5
|
pluginManager.addTextSearchAdapterType(() => new TextSearchAdapterType({
|
|
7
6
|
name: 'JBrowse1TextSearchAdapter',
|
|
8
7
|
configSchema,
|
|
9
|
-
AdapterClass,
|
|
10
8
|
description: 'A JBrowse 1 text search adapter',
|
|
9
|
+
getAdapterClass: () => import('./JBrowse1TextSearchAdapter').then(t => t.default),
|
|
11
10
|
}));
|
|
12
11
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-legacy-jbrowse",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.1",
|
|
4
4
|
"description": "JBrowse 2 plugin for connecting to and reading JBrowse 1 data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"distModule": "esm/index.js",
|
|
56
56
|
"srcModule": "src/index.ts",
|
|
57
57
|
"module": "esm/index.js",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "86ed70124fc5a0b1161266659d1ca9f8796bf3fe"
|
|
59
59
|
}
|