@jbrowse/plugin-legacy-jbrowse 3.3.0 → 3.4.0

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.
@@ -24,6 +24,5 @@ export default class JBrowse1TextSearchAdapter extends BaseAdapter implements Ba
24
24
  loadIndexFile(query: string): Promise<IndexFile>;
25
25
  searchIndex(args: BaseTextSearchArgs): Promise<BaseResult[]>;
26
26
  formatResults(results: SearchResults, tracks: string[], searchType?: string): BaseResult[];
27
- freeResources(): void;
28
27
  }
29
28
  export {};
@@ -54,6 +54,5 @@ class JBrowse1TextSearchAdapter extends BaseAdapter_1.BaseAdapter {
54
54
  }),
55
55
  ].filter(result => result.getLabel() !== 'too many matches');
56
56
  }
57
- freeResources() { }
58
57
  }
59
58
  exports.default = JBrowse1TextSearchAdapter;
@@ -14,5 +14,4 @@ export default class NCListAdapter extends BaseFeatureDataAdapter {
14
14
  wrapFeature(ncFeature: any): NCListFeature;
15
15
  hasDataForRefName(refName: string): Promise<boolean>;
16
16
  getRefNames(): Promise<string[]>;
17
- freeResources(): void;
18
17
  }
@@ -44,6 +44,5 @@ class NCListAdapter extends BaseAdapter_1.BaseFeatureDataAdapter {
44
44
  async getRefNames() {
45
45
  return this.configRefNames || [];
46
46
  }
47
- freeResources() { }
48
47
  }
49
48
  exports.default = NCListAdapter;
@@ -15,5 +15,7 @@ const NCListAdapter = (0, configuration_1.ConfigurationSchema)('NCListAdapter',
15
15
  defaultValue: [],
16
16
  description: 'List of refNames used by the NCList used for aliasing',
17
17
  },
18
- }, { explicitlyTyped: true });
18
+ }, {
19
+ explicitlyTyped: true,
20
+ });
19
21
  exports.default = NCListAdapter;
@@ -24,6 +24,5 @@ export default class JBrowse1TextSearchAdapter extends BaseAdapter implements Ba
24
24
  loadIndexFile(query: string): Promise<IndexFile>;
25
25
  searchIndex(args: BaseTextSearchArgs): Promise<BaseResult[]>;
26
26
  formatResults(results: SearchResults, tracks: string[], searchType?: string): BaseResult[];
27
- freeResources(): void;
28
27
  }
29
28
  export {};
@@ -49,5 +49,4 @@ export default class JBrowse1TextSearchAdapter extends BaseAdapter {
49
49
  }),
50
50
  ].filter(result => result.getLabel() !== 'too many matches');
51
51
  }
52
- freeResources() { }
53
52
  }
@@ -14,5 +14,4 @@ export default class NCListAdapter extends BaseFeatureDataAdapter {
14
14
  wrapFeature(ncFeature: any): NCListFeature;
15
15
  hasDataForRefName(refName: string): Promise<boolean>;
16
16
  getRefNames(): Promise<string[]>;
17
- freeResources(): void;
18
17
  }
@@ -39,5 +39,4 @@ export default class NCListAdapter extends BaseFeatureDataAdapter {
39
39
  async getRefNames() {
40
40
  return this.configRefNames || [];
41
41
  }
42
- freeResources() { }
43
42
  }
@@ -13,5 +13,7 @@ const NCListAdapter = ConfigurationSchema('NCListAdapter', {
13
13
  defaultValue: [],
14
14
  description: 'List of refNames used by the NCList used for aliasing',
15
15
  },
16
- }, { explicitlyTyped: true });
16
+ }, {
17
+ explicitlyTyped: true,
18
+ });
17
19
  export default NCListAdapter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-legacy-jbrowse",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "JBrowse 2 plugin for connecting to and reading JBrowse 1 data",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -36,10 +36,10 @@
36
36
  "clean": "rimraf dist esm *.tsbuildinfo"
37
37
  },
38
38
  "dependencies": {
39
- "@gmod/nclist": "^2.0.0",
40
- "@jbrowse/core": "^3.3.0",
39
+ "@gmod/nclist": "^3.0.0",
40
+ "@jbrowse/core": "^3.4.0",
41
41
  "crc": "^4.0.0",
42
- "generic-filehandle2": "^1.0.0",
42
+ "generic-filehandle2": "^2.0.1",
43
43
  "get-value": "^3.0.0",
44
44
  "mobx": "^6.0.0",
45
45
  "mobx-react": "^9.0.0",
@@ -53,5 +53,5 @@
53
53
  "distModule": "esm/index.js",
54
54
  "srcModule": "src/index.ts",
55
55
  "module": "esm/index.js",
56
- "gitHead": "0bb64d8cc7ecdd167515308b31eec3d9acbc59e4"
56
+ "gitHead": "a9f1ac35fc2dd810bae92cdaf1fc19995bee4413"
57
57
  }