@atlaspack/rust 3.2.1-canary.0 → 3.2.1-canary.10

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/index.d.ts CHANGED
@@ -124,6 +124,7 @@ export class Lmdb {
124
124
  constructor(options: LmdbOptions)
125
125
  get(key: string): Promise<Buffer | null | undefined>
126
126
  hasSync(key: string): boolean
127
+ keysSync(skip: number, limit: number): Array<string>
127
128
  getSync(key: string): Buffer | null
128
129
  getManySync(keys: Array<string>): Array<Buffer | undefined | null>
129
130
  putMany(entries: Array<Entry>): Promise<void>
@@ -138,6 +139,7 @@ export class Lmdb {
138
139
  constructor(options: LMDBOptions)
139
140
  get(key: string): Promise<Buffer | null | undefined>
140
141
  hasSync(key: string): boolean
142
+ keysSync(skip: number, limit: number): Array<string>
141
143
  getSync(key: string): Buffer | null
142
144
  getManySync(keys: Array<string>): Array<Buffer | undefined | null>
143
145
  putMany(entries: Array<Entry>): Promise<void>
Binary file
Binary file
package/index.js.flow CHANGED
@@ -327,6 +327,7 @@ declare export function performStringReplacements(
327
327
  declare export class Lmdb {
328
328
  constructor(options: LmdbOptions): Lmdb;
329
329
  get(key: string): Promise<Buffer | null | void>;
330
+ keysSync(skip: number, limit: number): Array<string>;
330
331
  hasSync(key: string): boolean;
331
332
  getSync(key: string): Buffer | null;
332
333
  getManySync(keys: Array<string>): Array<Buffer | void | null>;
@@ -371,6 +372,8 @@ export interface VCSState {
371
372
  // Files that have been modified since the last commit
372
373
  dirtyFiles: VCSFile[];
373
374
  yarnStates: YarnState[];
375
+ dirtyFilesExecutionTime: number;
376
+ yarnStatesExecutionTime: number;
374
377
  }
375
378
 
376
379
  declare export function getVcsStateSnapshot(
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/rust",
3
- "version": "3.2.1-canary.0+56fd82cd5",
3
+ "version": "3.2.1-canary.10+e28fbeb3a",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -34,5 +34,5 @@
34
34
  "test": "mocha"
35
35
  },
36
36
  "type": "commonjs",
37
- "gitHead": "56fd82cd544c4c9096be6ebea8261e714435de09"
37
+ "gitHead": "e28fbeb3a609aad3e44af9b8d3d5fd83dda38941"
38
38
  }