@atlaspack/cache 2.12.1-dev.3368 → 2.12.1-dev.3401

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.
@@ -41,7 +41,7 @@ class IDBCache {
41
41
  // $FlowFixMe
42
42
 
43
43
  constructor() {
44
- this.store = (0, _idb().openDB)('REPL-atlaspack-cache', 1, {
44
+ this.store = (0, _idb().openDB)('REPL-parcel-cache', 1, {
45
45
  upgrade(db) {
46
46
  db.createObjectStore(STORE_NAME);
47
47
  },
package/lib/LMDBCache.js CHANGED
@@ -60,7 +60,7 @@ class LMDBCache {
60
60
  this.dir = cacheDir;
61
61
  this.fsCache = new _FSCache.FSCache(this.fs, cacheDir);
62
62
  this.store = _lmdb().default.open(cacheDir, {
63
- name: 'atlaspack-cache',
63
+ name: 'parcel-cache',
64
64
  encoding: 'binary',
65
65
  compression: true
66
66
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@atlaspack/cache",
3
3
  "description": "Interface for defining caches and file-system, IDB and LMDB implementations.",
4
- "version": "2.12.1-dev.3368+af1db7f65",
4
+ "version": "2.12.1-dev.3401+b483af77f",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -21,13 +21,13 @@
21
21
  "check-ts": "tsc --noEmit index.d.ts"
22
22
  },
23
23
  "dependencies": {
24
- "@atlaspack/fs": "2.12.1-dev.3368+af1db7f65",
25
- "@atlaspack/logger": "2.12.1-dev.3368+af1db7f65",
26
- "@atlaspack/utils": "2.12.1-dev.3368+af1db7f65",
24
+ "@atlaspack/fs": "2.12.1-dev.3401+b483af77f",
25
+ "@atlaspack/logger": "2.12.1-dev.3401+b483af77f",
26
+ "@atlaspack/utils": "2.12.1-dev.3401+b483af77f",
27
27
  "lmdb": "2.8.5"
28
28
  },
29
29
  "peerDependencies": {
30
- "@atlaspack/core": "^2.12.1-dev.3368+af1db7f65"
30
+ "@atlaspack/core": "^2.12.1-dev.3401+b483af77f"
31
31
  },
32
32
  "devDependencies": {
33
33
  "idb": "^5.0.8"
@@ -36,5 +36,5 @@
36
36
  "./src/IDBCache.js": "./src/IDBCache.browser.js",
37
37
  "./src/LMDBCache.js": false
38
38
  },
39
- "gitHead": "af1db7f65c4816917ddf83716deedc536a1b8b27"
39
+ "gitHead": "b483af77f02d1258c8dad156e097b94f83671d8e"
40
40
  }
@@ -20,7 +20,7 @@ export class IDBCache implements Cache {
20
20
  store: any;
21
21
 
22
22
  constructor() {
23
- this.store = openDB('REPL-atlaspack-cache', 1, {
23
+ this.store = openDB('REPL-parcel-cache', 1, {
24
24
  upgrade(db) {
25
25
  db.createObjectStore(STORE_NAME);
26
26
  },
package/src/LMDBCache.js CHANGED
@@ -36,7 +36,7 @@ export class LMDBCache implements Cache {
36
36
  this.fsCache = new FSCache(this.fs, cacheDir);
37
37
 
38
38
  this.store = lmdb.open(cacheDir, {
39
- name: 'atlaspack-cache',
39
+ name: 'parcel-cache',
40
40
  encoding: 'binary',
41
41
  compression: true,
42
42
  });