@jbrowse/plugin-text-indexing 2.11.0 → 2.11.2
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/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const Plugin_1 = __importDefault(require("@jbrowse/core/Plugin"));
|
|
7
7
|
const TextIndexRpcMethod_1 = require("./TextIndexRpcMethod/TextIndexRpcMethod");
|
|
8
|
-
class
|
|
8
|
+
class TextIndexingPlugin extends Plugin_1.default {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
11
|
this.name = 'TextIndexingPlugin';
|
|
@@ -14,4 +14,4 @@ class default_1 extends Plugin_1.default {
|
|
|
14
14
|
pluginManager.addRpcMethod(() => new TextIndexRpcMethod_1.TextIndexRpcMethod(pluginManager));
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
-
exports.default =
|
|
17
|
+
exports.default = TextIndexingPlugin;
|
package/esm/index.d.ts
CHANGED
package/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Plugin from '@jbrowse/core/Plugin';
|
|
2
2
|
import { TextIndexRpcMethod } from './TextIndexRpcMethod/TextIndexRpcMethod';
|
|
3
|
-
export default class extends Plugin {
|
|
3
|
+
export default class TextIndexingPlugin extends Plugin {
|
|
4
4
|
constructor() {
|
|
5
5
|
super(...arguments);
|
|
6
6
|
this.name = 'TextIndexingPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-text-indexing",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.2",
|
|
4
4
|
"description": "JBrowse 2 text indexing rpc method",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/text-indexing": "^2.11.
|
|
39
|
+
"@jbrowse/text-indexing": "^2.11.2"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@jbrowse/core": "^2.0.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "511048cb6965f0bf624c96de244e7fd47fce17d6"
|
|
55
55
|
}
|