@flopflip/localstorage-cache 1.0.21 → 1.0.22

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,3 +1,3 @@
1
- declare const version = "1.0.21";
1
+ declare const version = "__@FLOPFLIP/VERSION_OF_RELEASE__";
2
2
  export { version };
3
3
  export { default } from './cache';
@@ -1,3 +1,3 @@
1
- declare const version = "1.0.21";
1
+ declare const version = "__@FLOPFLIP/VERSION_OF_RELEASE__";
2
2
  export { default } from './cache';
3
3
  export { version };
@@ -23,7 +23,7 @@ var createCache = function createCache(options) {
23
23
  return cache;
24
24
  };
25
25
 
26
- var version = '1.0.21';
26
+ var version = "1.0.22";
27
27
 
28
28
  exports["default"] = createCache;
29
29
  exports.version = version;
@@ -23,7 +23,7 @@ var createCache = function createCache(options) {
23
23
  return cache;
24
24
  };
25
25
 
26
- var version = '1.0.21';
26
+ var version = "1.0.22";
27
27
 
28
28
  exports["default"] = createCache;
29
29
  exports.version = version;
@@ -19,6 +19,6 @@ var createCache = function createCache(options) {
19
19
  return cache;
20
20
  };
21
21
 
22
- var version = '1.0.21';
22
+ var version = "1.0.22";
23
23
 
24
24
  export { createCache as default, version };
package/package.json CHANGED
@@ -1,12 +1,9 @@
1
1
  {
2
2
  "name": "@flopflip/localstorage-cache",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Localstorage cache for flipflop adapters",
5
5
  "main": "dist/flopflip-localstorage-cache.cjs.js",
6
6
  "module": "dist/flopflip-localstorage-cache.esm.js",
7
- "scripts": {
8
- "prepare": "./../../bin/version.js amend"
9
- },
10
7
  "files": [
11
8
  "readme.md",
12
9
  "dist/**"
@@ -16,7 +13,8 @@
16
13
  },
17
14
  "repository": {
18
15
  "type": "git",
19
- "url": "git+https://github.com/tdeekens/flopflip.git"
16
+ "url": "https://github.com/tdeekens/flopflip.git",
17
+ "directory": "packages/localstorage-cache"
20
18
  },
21
19
  "author": "Tobias Deekens <nerd@tdeekens.name>",
22
20
  "license": "MIT",
@@ -32,7 +30,6 @@
32
30
  "client"
33
31
  ],
34
32
  "dependencies": {
35
- "@flopflip/types": "4.1.18"
36
- },
37
- "devDependencies": {}
33
+ "@flopflip/types": "4.1.19"
34
+ }
38
35
  }