flat-cache 1.3.2 → 1.3.4
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/cache.js +4 -10
- package/changelog.md +79 -54
- package/del.js +13 -0
- package/package.json +6 -5
- package/utils.js +2 -2
package/cache.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var path = require( 'path' );
|
|
2
2
|
var fs = require( 'graceful-fs' );
|
|
3
|
-
var del = require( 'del' ).sync;
|
|
4
3
|
var utils = require( './utils' );
|
|
4
|
+
var del = require( './del' );
|
|
5
5
|
var writeJSON = utils.writeJSON;
|
|
6
6
|
|
|
7
7
|
var cache = {
|
|
@@ -125,9 +125,7 @@ var cache = {
|
|
|
125
125
|
* @return {Boolean} true or false if the file was successfully deleted
|
|
126
126
|
*/
|
|
127
127
|
removeCacheFile: function () {
|
|
128
|
-
return del( this._pathToFile
|
|
129
|
-
force: true
|
|
130
|
-
} );
|
|
128
|
+
return del( this._pathToFile );
|
|
131
129
|
},
|
|
132
130
|
/**
|
|
133
131
|
* Destroy the file cache and cache content.
|
|
@@ -185,9 +183,7 @@ module.exports = {
|
|
|
185
183
|
*/
|
|
186
184
|
clearCacheById: function ( docId, cacheDir ) {
|
|
187
185
|
var filePath = cacheDir ? path.resolve( cacheDir, docId ) : path.resolve( __dirname, './.cache/', docId );
|
|
188
|
-
return del( filePath
|
|
189
|
-
force: true
|
|
190
|
-
} ).length > 0;
|
|
186
|
+
return del( filePath );
|
|
191
187
|
},
|
|
192
188
|
/**
|
|
193
189
|
* Remove all cache stored in the cache directory
|
|
@@ -196,8 +192,6 @@ module.exports = {
|
|
|
196
192
|
*/
|
|
197
193
|
clearAll: function ( cacheDir ) {
|
|
198
194
|
var filePath = cacheDir ? path.resolve( cacheDir ) : path.resolve( __dirname, './.cache/' );
|
|
199
|
-
return del( filePath
|
|
200
|
-
force: true
|
|
201
|
-
} ).length > 0;
|
|
195
|
+
return del( filePath );
|
|
202
196
|
}
|
|
203
197
|
};
|
package/changelog.md
CHANGED
|
@@ -1,31 +1,56 @@
|
|
|
1
1
|
|
|
2
2
|
# flat-cache - Changelog
|
|
3
|
+
## v1.3.4
|
|
4
|
+
- **Refactoring**
|
|
5
|
+
- Add del.js and utils.js to the list of files to be beautified - [9d0ca9b]( https://github.com/royriojas/flat-cache/commit/9d0ca9b ), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 12:19:02
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## v1.3.3
|
|
9
|
+
- **Refactoring**
|
|
10
|
+
- Make sure package-lock.json is up to date - [a7d2598]( https://github.com/royriojas/flat-cache/commit/a7d2598 ), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 11:36:08
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
- **Other changes**
|
|
14
|
+
- Removed the need for del ([#33](https://github.com/royriojas/flat-cache/issues/33)) - [c429012]( https://github.com/royriojas/flat-cache/commit/c429012 ), [S. Gilroy](https://github.com/S. Gilroy), 13/11/2018 13:56:37
|
|
15
|
+
|
|
16
|
+
* Removed the need for del
|
|
17
|
+
|
|
18
|
+
Removed the need for del as newer versions have broken backwards
|
|
19
|
+
compatibility. del mainly uses rimraf for deleting folders
|
|
20
|
+
and files, replaceing it with rimraf only is a minimal change.
|
|
21
|
+
|
|
22
|
+
* Disable glob on rimraf calls
|
|
23
|
+
|
|
24
|
+
* Added glob disable to wrong call
|
|
25
|
+
|
|
26
|
+
* Wrapped rimraf to simplify solution
|
|
27
|
+
|
|
3
28
|
## v1.3.2
|
|
4
29
|
- **Refactoring**
|
|
5
|
-
- remove yarn.lock file - [704c6c4]( https://github.com/royriojas/flat-cache/commit/704c6c4 ), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018
|
|
30
|
+
- remove yarn.lock file - [704c6c4]( https://github.com/royriojas/flat-cache/commit/704c6c4 ), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:41:08
|
|
6
31
|
|
|
7
32
|
|
|
8
33
|
- **undefined**
|
|
9
|
-
- replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23))" - [db12d74]( https://github.com/royriojas/flat-cache/commit/db12d74 ), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018
|
|
34
|
+
- replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23))" - [db12d74]( https://github.com/royriojas/flat-cache/commit/db12d74 ), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:40:39
|
|
10
35
|
|
|
11
36
|
This reverts commit 00f689277a75e85fef28e6a048fad227afc525e6.
|
|
12
37
|
|
|
13
38
|
## v1.3.1
|
|
14
39
|
- **Refactoring**
|
|
15
|
-
- upgrade deps to remove some security warnings - [f405719]( https://github.com/royriojas/flat-cache/commit/f405719 ), [Roy Riojas](https://github.com/Roy Riojas), 06/11/2018
|
|
40
|
+
- upgrade deps to remove some security warnings - [f405719]( https://github.com/royriojas/flat-cache/commit/f405719 ), [Roy Riojas](https://github.com/Roy Riojas), 06/11/2018 12:07:31
|
|
16
41
|
|
|
17
42
|
|
|
18
43
|
- **Bug Fixes**
|
|
19
|
-
- replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23)) - [00f6892]( https://github.com/royriojas/flat-cache/commit/00f6892 ), [Terry](https://github.com/Terry), 05/11/2018
|
|
44
|
+
- replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23)) - [00f6892]( https://github.com/royriojas/flat-cache/commit/00f6892 ), [Terry](https://github.com/Terry), 05/11/2018 18:44:16
|
|
20
45
|
|
|
21
46
|
|
|
22
47
|
- **undefined**
|
|
23
|
-
- update del to v3.0.0 ([#26](https://github.com/royriojas/flat-cache/issues/26)) - [d42883f]( https://github.com/royriojas/flat-cache/commit/d42883f ), [Patrick Silva](https://github.com/Patrick Silva), 03/11/2018
|
|
48
|
+
- update del to v3.0.0 ([#26](https://github.com/royriojas/flat-cache/issues/26)) - [d42883f]( https://github.com/royriojas/flat-cache/commit/d42883f ), [Patrick Silva](https://github.com/Patrick Silva), 03/11/2018 01:00:44
|
|
24
49
|
|
|
25
50
|
Closes <a target="_blank" class="info-link" href="https://github.com/royriojas/flat-cache/issues/25"><span>#25</span></a>
|
|
26
51
|
## v1.3.0
|
|
27
52
|
- **Other changes**
|
|
28
|
-
- Added #all method ([#16](https://github.com/royriojas/flat-cache/issues/16)) - [12293be]( https://github.com/royriojas/flat-cache/commit/12293be ), [Ozair Patel](https://github.com/Ozair Patel), 25/09/2017
|
|
53
|
+
- Added #all method ([#16](https://github.com/royriojas/flat-cache/issues/16)) - [12293be]( https://github.com/royriojas/flat-cache/commit/12293be ), [Ozair Patel](https://github.com/Ozair Patel), 25/09/2017 14:46:38
|
|
29
54
|
|
|
30
55
|
* Added #all method
|
|
31
56
|
|
|
@@ -39,12 +64,12 @@
|
|
|
39
64
|
|
|
40
65
|
* Beautified file
|
|
41
66
|
|
|
42
|
-
- fix changelog title style ([#14](https://github.com/royriojas/flat-cache/issues/14)) - [af8338a]( https://github.com/royriojas/flat-cache/commit/af8338a ), [前端小武](https://github.com/前端小武), 19/12/2016
|
|
67
|
+
- fix changelog title style ([#14](https://github.com/royriojas/flat-cache/issues/14)) - [af8338a]( https://github.com/royriojas/flat-cache/commit/af8338a ), [前端小武](https://github.com/前端小武), 19/12/2016 20:34:48
|
|
43
68
|
|
|
44
69
|
|
|
45
70
|
## v1.2.2
|
|
46
71
|
- **Bug Fixes**
|
|
47
|
-
- Do not crash if cache file is invalid JSON. ([#13](https://github.com/royriojas/flat-cache/issues/13)) - [87beaa6]( https://github.com/royriojas/flat-cache/commit/87beaa6 ), [Roy Riojas](https://github.com/Roy Riojas), 19/12/2016
|
|
72
|
+
- Do not crash if cache file is invalid JSON. ([#13](https://github.com/royriojas/flat-cache/issues/13)) - [87beaa6]( https://github.com/royriojas/flat-cache/commit/87beaa6 ), [Roy Riojas](https://github.com/Roy Riojas), 19/12/2016 18:03:35
|
|
48
73
|
|
|
49
74
|
Fixes <a target="_blank" class="info-link" href="https://github.com/royriojas/flat-cache/issues/12"><span>#12</span></a>
|
|
50
75
|
|
|
@@ -55,186 +80,186 @@
|
|
|
55
80
|
If the cache is somehow not valid the cache will be discarded an a
|
|
56
81
|
a new cache will be stored instead
|
|
57
82
|
- **Other changes**
|
|
58
|
-
- Added travis ci support for modern node versions ([#11](https://github.com/royriojas/flat-cache/issues/11)) - [1c2b1f7]( https://github.com/royriojas/flat-cache/commit/1c2b1f7 ), [Amila Welihinda](https://github.com/Amila Welihinda),
|
|
83
|
+
- Added travis ci support for modern node versions ([#11](https://github.com/royriojas/flat-cache/issues/11)) - [1c2b1f7]( https://github.com/royriojas/flat-cache/commit/1c2b1f7 ), [Amila Welihinda](https://github.com/Amila Welihinda), 10/11/2016 23:47:52
|
|
59
84
|
|
|
60
85
|
|
|
61
|
-
- Bumping `circular-son` version ([#10](https://github.com/royriojas/flat-cache/issues/10)) - [4d5e861]( https://github.com/royriojas/flat-cache/commit/4d5e861 ), [Andrea Giammarchi](https://github.com/Andrea Giammarchi), 02/08/2016
|
|
86
|
+
- Bumping `circular-son` version ([#10](https://github.com/royriojas/flat-cache/issues/10)) - [4d5e861]( https://github.com/royriojas/flat-cache/commit/4d5e861 ), [Andrea Giammarchi](https://github.com/Andrea Giammarchi), 02/08/2016 07:13:52
|
|
62
87
|
|
|
63
88
|
As mentioned in https://github.com/WebReflection/circular-json/issues/25 `circular-json` wan't rightly implementing the license field.
|
|
64
89
|
|
|
65
90
|
Latest version bump changed only that bit so that ESLint should now be happy.
|
|
66
91
|
## v1.2.1
|
|
67
92
|
- **Bug Fixes**
|
|
68
|
-
- Add missing utils.js file to the package. closes [#8](https://github.com/royriojas/flat-cache/issues/8) - [ec10cf2]( https://github.com/royriojas/flat-cache/commit/ec10cf2 ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016
|
|
93
|
+
- Add missing utils.js file to the package. closes [#8](https://github.com/royriojas/flat-cache/issues/8) - [ec10cf2]( https://github.com/royriojas/flat-cache/commit/ec10cf2 ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:18:57
|
|
69
94
|
|
|
70
95
|
|
|
71
96
|
## v1.2.0
|
|
72
97
|
- **Documentation**
|
|
73
|
-
- Add documentation about noPrune option - [23e11f9]( https://github.com/royriojas/flat-cache/commit/23e11f9 ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016
|
|
98
|
+
- Add documentation about noPrune option - [23e11f9]( https://github.com/royriojas/flat-cache/commit/23e11f9 ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:06:49
|
|
74
99
|
|
|
75
100
|
|
|
76
101
|
## v1.1.0
|
|
77
102
|
- **Features**
|
|
78
|
-
- Add noPrune option to cache.save() method. closes [#7](https://github.com/royriojas/flat-cache/issues/7) - [2c8016a]( https://github.com/royriojas/flat-cache/commit/2c8016a ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016
|
|
103
|
+
- Add noPrune option to cache.save() method. closes [#7](https://github.com/royriojas/flat-cache/issues/7) - [2c8016a]( https://github.com/royriojas/flat-cache/commit/2c8016a ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:00:29
|
|
79
104
|
|
|
80
105
|
|
|
81
|
-
- Add json read and write utility based on circular-json - [c31081e]( https://github.com/royriojas/flat-cache/commit/c31081e ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016
|
|
106
|
+
- Add json read and write utility based on circular-json - [c31081e]( https://github.com/royriojas/flat-cache/commit/c31081e ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:58:17
|
|
82
107
|
|
|
83
108
|
|
|
84
109
|
- **Bug Fixes**
|
|
85
|
-
- Remove UTF16 BOM stripping - [4a41e22]( https://github.com/royriojas/flat-cache/commit/4a41e22 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016
|
|
110
|
+
- Remove UTF16 BOM stripping - [4a41e22]( https://github.com/royriojas/flat-cache/commit/4a41e22 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:18:06
|
|
86
111
|
|
|
87
112
|
Since we control both writing and reading of JSON stream, there no needs
|
|
88
113
|
to handle unicode BOM.
|
|
89
|
-
- Use circular-json to handle circular references (fix [#5](https://github.com/royriojas/flat-cache/issues/5)) - [cd7aeed]( https://github.com/royriojas/flat-cache/commit/cd7aeed ), [Jean Ponchon](https://github.com/Jean Ponchon), 25/07/2016
|
|
114
|
+
- Use circular-json to handle circular references (fix [#5](https://github.com/royriojas/flat-cache/issues/5)) - [cd7aeed]( https://github.com/royriojas/flat-cache/commit/cd7aeed ), [Jean Ponchon](https://github.com/Jean Ponchon), 25/07/2016 11:11:59
|
|
90
115
|
|
|
91
116
|
|
|
92
117
|
- **Tests Related fixes**
|
|
93
|
-
- Add missing file from eslint test - [d6fa3c3]( https://github.com/royriojas/flat-cache/commit/d6fa3c3 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016
|
|
118
|
+
- Add missing file from eslint test - [d6fa3c3]( https://github.com/royriojas/flat-cache/commit/d6fa3c3 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:15:51
|
|
94
119
|
|
|
95
120
|
|
|
96
|
-
- Add test for circular json serialization / deserialization - [07d2ddd]( https://github.com/royriojas/flat-cache/commit/07d2ddd ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016
|
|
121
|
+
- Add test for circular json serialization / deserialization - [07d2ddd]( https://github.com/royriojas/flat-cache/commit/07d2ddd ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:36
|
|
97
122
|
|
|
98
123
|
|
|
99
124
|
- **Refactoring**
|
|
100
|
-
- Remove unused read-json-sync - [2be1c24]( https://github.com/royriojas/flat-cache/commit/2be1c24 ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016
|
|
125
|
+
- Remove unused read-json-sync - [2be1c24]( https://github.com/royriojas/flat-cache/commit/2be1c24 ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:18
|
|
101
126
|
|
|
102
127
|
|
|
103
128
|
- **Build Scripts Changes**
|
|
104
|
-
- travis tests on 0.12 and 4x - [3a613fd]( https://github.com/royriojas/flat-cache/commit/3a613fd ), [royriojas](https://github.com/royriojas), 15/11/2015
|
|
129
|
+
- travis tests on 0.12 and 4x - [3a613fd]( https://github.com/royriojas/flat-cache/commit/3a613fd ), [royriojas](https://github.com/royriojas), 15/11/2015 14:34:40
|
|
105
130
|
|
|
106
131
|
|
|
107
|
-
- add eslint-fix task - [fd29e52]( https://github.com/royriojas/flat-cache/commit/fd29e52 ), [royriojas](https://github.com/royriojas), 01/11/2015
|
|
132
|
+
- add eslint-fix task - [fd29e52]( https://github.com/royriojas/flat-cache/commit/fd29e52 ), [royriojas](https://github.com/royriojas), 01/11/2015 15:04:08
|
|
108
133
|
|
|
109
134
|
|
|
110
|
-
- make sure the test script also verify beautification and linting of files before running tests - [e94e176]( https://github.com/royriojas/flat-cache/commit/e94e176 ), [royriojas](https://github.com/royriojas), 01/11/2015
|
|
135
|
+
- make sure the test script also verify beautification and linting of files before running tests - [e94e176]( https://github.com/royriojas/flat-cache/commit/e94e176 ), [royriojas](https://github.com/royriojas), 01/11/2015 11:54:48
|
|
111
136
|
|
|
112
137
|
|
|
113
138
|
- **Other changes**
|
|
114
|
-
- add clearAll for cacheDir - [97383d9]( https://github.com/royriojas/flat-cache/commit/97383d9 ), [xieyaowu](https://github.com/xieyaowu), 31/10/2015
|
|
139
|
+
- add clearAll for cacheDir - [97383d9]( https://github.com/royriojas/flat-cache/commit/97383d9 ), [xieyaowu](https://github.com/xieyaowu), 31/10/2015 21:02:18
|
|
115
140
|
|
|
116
141
|
|
|
117
142
|
## v1.0.9
|
|
118
143
|
- **Bug Fixes**
|
|
119
|
-
- wrong default values for changelogx user repo name - [7bb52d1]( https://github.com/royriojas/flat-cache/commit/7bb52d1 ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
144
|
+
- wrong default values for changelogx user repo name - [7bb52d1]( https://github.com/royriojas/flat-cache/commit/7bb52d1 ), [royriojas](https://github.com/royriojas), 11/09/2015 15:59:30
|
|
120
145
|
|
|
121
146
|
|
|
122
147
|
## v1.0.8
|
|
123
148
|
- **Build Scripts Changes**
|
|
124
|
-
- test against node 4 - [c395b66]( https://github.com/royriojas/flat-cache/commit/c395b66 ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
149
|
+
- test against node 4 - [c395b66]( https://github.com/royriojas/flat-cache/commit/c395b66 ), [royriojas](https://github.com/royriojas), 11/09/2015 15:51:39
|
|
125
150
|
|
|
126
151
|
|
|
127
152
|
## v1.0.7
|
|
128
153
|
- **Other changes**
|
|
129
|
-
- Move dependencies into devDep - [7e47099]( https://github.com/royriojas/flat-cache/commit/7e47099 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015
|
|
154
|
+
- Move dependencies into devDep - [7e47099]( https://github.com/royriojas/flat-cache/commit/7e47099 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 15:10:57
|
|
130
155
|
|
|
131
156
|
|
|
132
157
|
- **Documentation**
|
|
133
|
-
- Add missing changelog link - [f51197a]( https://github.com/royriojas/flat-cache/commit/f51197a ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
158
|
+
- Add missing changelog link - [f51197a]( https://github.com/royriojas/flat-cache/commit/f51197a ), [royriojas](https://github.com/royriojas), 11/09/2015 14:48:05
|
|
134
159
|
|
|
135
160
|
|
|
136
161
|
## v1.0.6
|
|
137
162
|
- **Build Scripts Changes**
|
|
138
|
-
- Add helpers/code check scripts - [bdb82f3]( https://github.com/royriojas/flat-cache/commit/bdb82f3 ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
163
|
+
- Add helpers/code check scripts - [bdb82f3]( https://github.com/royriojas/flat-cache/commit/bdb82f3 ), [royriojas](https://github.com/royriojas), 11/09/2015 14:44:31
|
|
139
164
|
|
|
140
165
|
|
|
141
166
|
## v1.0.5
|
|
142
167
|
- **Documentation**
|
|
143
|
-
- better description for the module - [436817f]( https://github.com/royriojas/flat-cache/commit/436817f ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
168
|
+
- better description for the module - [436817f]( https://github.com/royriojas/flat-cache/commit/436817f ), [royriojas](https://github.com/royriojas), 11/09/2015 14:35:33
|
|
144
169
|
|
|
145
170
|
|
|
146
171
|
- **Other changes**
|
|
147
|
-
- Update dependencies - [be88aa3]( https://github.com/royriojas/flat-cache/commit/be88aa3 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015
|
|
172
|
+
- Update dependencies - [be88aa3]( https://github.com/royriojas/flat-cache/commit/be88aa3 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 13:47:41
|
|
148
173
|
|
|
149
174
|
|
|
150
175
|
## v1.0.11
|
|
151
176
|
- **Features**
|
|
152
|
-
- Add noPrune option to cache.save() method. closes [#7](https://github.com/royriojas/flat-cache/issues/7) - [2c8016a]( https://github.com/royriojas/flat-cache/commit/2c8016a ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016
|
|
177
|
+
- Add noPrune option to cache.save() method. closes [#7](https://github.com/royriojas/flat-cache/issues/7) - [2c8016a]( https://github.com/royriojas/flat-cache/commit/2c8016a ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:00:29
|
|
153
178
|
|
|
154
179
|
|
|
155
|
-
- Add json read and write utility based on circular-json - [c31081e]( https://github.com/royriojas/flat-cache/commit/c31081e ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016
|
|
180
|
+
- Add json read and write utility based on circular-json - [c31081e]( https://github.com/royriojas/flat-cache/commit/c31081e ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:58:17
|
|
156
181
|
|
|
157
182
|
|
|
158
183
|
- **Bug Fixes**
|
|
159
|
-
- Remove UTF16 BOM stripping - [4a41e22]( https://github.com/royriojas/flat-cache/commit/4a41e22 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016
|
|
184
|
+
- Remove UTF16 BOM stripping - [4a41e22]( https://github.com/royriojas/flat-cache/commit/4a41e22 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:18:06
|
|
160
185
|
|
|
161
186
|
Since we control both writing and reading of JSON stream, there no needs
|
|
162
187
|
to handle unicode BOM.
|
|
163
|
-
- Use circular-json to handle circular references (fix [#5](https://github.com/royriojas/flat-cache/issues/5)) - [cd7aeed]( https://github.com/royriojas/flat-cache/commit/cd7aeed ), [Jean Ponchon](https://github.com/Jean Ponchon), 25/07/2016
|
|
188
|
+
- Use circular-json to handle circular references (fix [#5](https://github.com/royriojas/flat-cache/issues/5)) - [cd7aeed]( https://github.com/royriojas/flat-cache/commit/cd7aeed ), [Jean Ponchon](https://github.com/Jean Ponchon), 25/07/2016 11:11:59
|
|
164
189
|
|
|
165
190
|
|
|
166
191
|
- **Tests Related fixes**
|
|
167
|
-
- Add missing file from eslint test - [d6fa3c3]( https://github.com/royriojas/flat-cache/commit/d6fa3c3 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016
|
|
192
|
+
- Add missing file from eslint test - [d6fa3c3]( https://github.com/royriojas/flat-cache/commit/d6fa3c3 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:15:51
|
|
168
193
|
|
|
169
194
|
|
|
170
|
-
- Add test for circular json serialization / deserialization - [07d2ddd]( https://github.com/royriojas/flat-cache/commit/07d2ddd ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016
|
|
195
|
+
- Add test for circular json serialization / deserialization - [07d2ddd]( https://github.com/royriojas/flat-cache/commit/07d2ddd ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:36
|
|
171
196
|
|
|
172
197
|
|
|
173
198
|
- **Refactoring**
|
|
174
|
-
- Remove unused read-json-sync - [2be1c24]( https://github.com/royriojas/flat-cache/commit/2be1c24 ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016
|
|
199
|
+
- Remove unused read-json-sync - [2be1c24]( https://github.com/royriojas/flat-cache/commit/2be1c24 ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:18
|
|
175
200
|
|
|
176
201
|
|
|
177
202
|
- **Build Scripts Changes**
|
|
178
|
-
- travis tests on 0.12 and 4x - [3a613fd]( https://github.com/royriojas/flat-cache/commit/3a613fd ), [royriojas](https://github.com/royriojas), 15/11/2015
|
|
203
|
+
- travis tests on 0.12 and 4x - [3a613fd]( https://github.com/royriojas/flat-cache/commit/3a613fd ), [royriojas](https://github.com/royriojas), 15/11/2015 14:34:40
|
|
179
204
|
|
|
180
205
|
|
|
181
206
|
## v1.0.10
|
|
182
207
|
- **Build Scripts Changes**
|
|
183
|
-
- add eslint-fix task - [fd29e52]( https://github.com/royriojas/flat-cache/commit/fd29e52 ), [royriojas](https://github.com/royriojas), 01/11/2015
|
|
208
|
+
- add eslint-fix task - [fd29e52]( https://github.com/royriojas/flat-cache/commit/fd29e52 ), [royriojas](https://github.com/royriojas), 01/11/2015 15:04:08
|
|
184
209
|
|
|
185
210
|
|
|
186
|
-
- make sure the test script also verify beautification and linting of files before running tests - [e94e176]( https://github.com/royriojas/flat-cache/commit/e94e176 ), [royriojas](https://github.com/royriojas), 01/11/2015
|
|
211
|
+
- make sure the test script also verify beautification and linting of files before running tests - [e94e176]( https://github.com/royriojas/flat-cache/commit/e94e176 ), [royriojas](https://github.com/royriojas), 01/11/2015 11:54:48
|
|
187
212
|
|
|
188
213
|
|
|
189
|
-
- test against node 4 - [c395b66]( https://github.com/royriojas/flat-cache/commit/c395b66 ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
214
|
+
- test against node 4 - [c395b66]( https://github.com/royriojas/flat-cache/commit/c395b66 ), [royriojas](https://github.com/royriojas), 11/09/2015 15:51:39
|
|
190
215
|
|
|
191
216
|
|
|
192
|
-
- Add helpers/code check scripts - [bdb82f3]( https://github.com/royriojas/flat-cache/commit/bdb82f3 ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
217
|
+
- Add helpers/code check scripts - [bdb82f3]( https://github.com/royriojas/flat-cache/commit/bdb82f3 ), [royriojas](https://github.com/royriojas), 11/09/2015 14:44:31
|
|
193
218
|
|
|
194
219
|
|
|
195
220
|
- **Other changes**
|
|
196
|
-
- add clearAll for cacheDir - [97383d9]( https://github.com/royriojas/flat-cache/commit/97383d9 ), [xieyaowu](https://github.com/xieyaowu), 31/10/2015
|
|
221
|
+
- add clearAll for cacheDir - [97383d9]( https://github.com/royriojas/flat-cache/commit/97383d9 ), [xieyaowu](https://github.com/xieyaowu), 31/10/2015 21:02:18
|
|
197
222
|
|
|
198
223
|
|
|
199
|
-
- Move dependencies into devDep - [7e47099]( https://github.com/royriojas/flat-cache/commit/7e47099 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015
|
|
224
|
+
- Move dependencies into devDep - [7e47099]( https://github.com/royriojas/flat-cache/commit/7e47099 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 15:10:57
|
|
200
225
|
|
|
201
226
|
|
|
202
|
-
- Update dependencies - [be88aa3]( https://github.com/royriojas/flat-cache/commit/be88aa3 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015
|
|
227
|
+
- Update dependencies - [be88aa3]( https://github.com/royriojas/flat-cache/commit/be88aa3 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 13:47:41
|
|
203
228
|
|
|
204
229
|
|
|
205
230
|
- **Bug Fixes**
|
|
206
|
-
- wrong default values for changelogx user repo name - [7bb52d1]( https://github.com/royriojas/flat-cache/commit/7bb52d1 ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
231
|
+
- wrong default values for changelogx user repo name - [7bb52d1]( https://github.com/royriojas/flat-cache/commit/7bb52d1 ), [royriojas](https://github.com/royriojas), 11/09/2015 15:59:30
|
|
207
232
|
|
|
208
233
|
|
|
209
234
|
- **Documentation**
|
|
210
|
-
- Add missing changelog link - [f51197a]( https://github.com/royriojas/flat-cache/commit/f51197a ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
235
|
+
- Add missing changelog link - [f51197a]( https://github.com/royriojas/flat-cache/commit/f51197a ), [royriojas](https://github.com/royriojas), 11/09/2015 14:48:05
|
|
211
236
|
|
|
212
237
|
|
|
213
|
-
- better description for the module - [436817f]( https://github.com/royriojas/flat-cache/commit/436817f ), [royriojas](https://github.com/royriojas), 11/09/2015
|
|
238
|
+
- better description for the module - [436817f]( https://github.com/royriojas/flat-cache/commit/436817f ), [royriojas](https://github.com/royriojas), 11/09/2015 14:35:33
|
|
214
239
|
|
|
215
240
|
|
|
216
|
-
- Add documentation about `clearAll` and `clearCacheById` - [13947c1]( https://github.com/royriojas/flat-cache/commit/13947c1 ), [Roy Riojas](https://github.com/Roy Riojas),
|
|
241
|
+
- Add documentation about `clearAll` and `clearCacheById` - [13947c1]( https://github.com/royriojas/flat-cache/commit/13947c1 ), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:44:05
|
|
217
242
|
|
|
218
243
|
|
|
219
244
|
- **Refactoring**
|
|
220
|
-
- load a cache file using the full filepath - [b8f68c2]( https://github.com/royriojas/flat-cache/commit/b8f68c2 ), [Roy Riojas](https://github.com/Roy Riojas), 30/08/2015
|
|
245
|
+
- load a cache file using the full filepath - [b8f68c2]( https://github.com/royriojas/flat-cache/commit/b8f68c2 ), [Roy Riojas](https://github.com/Roy Riojas), 30/08/2015 04:19:14
|
|
221
246
|
|
|
222
247
|
|
|
223
248
|
- **Features**
|
|
224
|
-
- Add methods to remove the cache documents created - [af40443]( https://github.com/royriojas/flat-cache/commit/af40443 ), [Roy Riojas](https://github.com/Roy Riojas),
|
|
249
|
+
- Add methods to remove the cache documents created - [af40443]( https://github.com/royriojas/flat-cache/commit/af40443 ), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:39:27
|
|
225
250
|
|
|
226
251
|
|
|
227
252
|
## v1.0.1
|
|
228
253
|
- **Other changes**
|
|
229
|
-
- Update README.md - [c2b6805]( https://github.com/royriojas/flat-cache/commit/c2b6805 ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015
|
|
254
|
+
- Update README.md - [c2b6805]( https://github.com/royriojas/flat-cache/commit/c2b6805 ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:28:07
|
|
230
255
|
|
|
231
256
|
|
|
232
257
|
## v1.0.0
|
|
233
258
|
- **Refactoring**
|
|
234
|
-
- flat-cache v.1.0.0 - [c984274]( https://github.com/royriojas/flat-cache/commit/c984274 ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015
|
|
259
|
+
- flat-cache v.1.0.0 - [c984274]( https://github.com/royriojas/flat-cache/commit/c984274 ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:11:50
|
|
235
260
|
|
|
236
261
|
|
|
237
262
|
- **Other changes**
|
|
238
|
-
- Initial commit - [d43cccf]( https://github.com/royriojas/flat-cache/commit/d43cccf ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015
|
|
263
|
+
- Initial commit - [d43cccf]( https://github.com/royriojas/flat-cache/commit/d43cccf ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 01:12:16
|
|
239
264
|
|
|
240
265
|
|
package/del.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
var rimraf = require( 'rimraf' ).sync;
|
|
2
|
+
var fs = require( 'graceful-fs' );
|
|
3
|
+
|
|
4
|
+
module.exports = function del( file ) {
|
|
5
|
+
if ( fs.existsSync( file ) ) {
|
|
6
|
+
//if rimraf doesn't throw then the file has been deleted or didn't exist
|
|
7
|
+
rimraf( file, {
|
|
8
|
+
glob: false
|
|
9
|
+
} );
|
|
10
|
+
return true;
|
|
11
|
+
}
|
|
12
|
+
return false;
|
|
13
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flat-cache",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "A stupidly simple key/value storage using files to persist some data",
|
|
5
5
|
"repository": "royriojas/flat-cache",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"main": "cache.js",
|
|
12
12
|
"files": [
|
|
13
13
|
"cache.js",
|
|
14
|
-
"utils.js"
|
|
14
|
+
"utils.js",
|
|
15
|
+
"del.js"
|
|
15
16
|
],
|
|
16
17
|
"engines": {
|
|
17
18
|
"node": ">=0.10.0"
|
|
@@ -23,9 +24,9 @@
|
|
|
23
24
|
"npm run verify --silent"
|
|
24
25
|
],
|
|
25
26
|
"scripts": {
|
|
26
|
-
"beautify": "esbeautifier 'cache.js' 'test/specs/**/*.js'",
|
|
27
|
+
"beautify": "esbeautifier 'cache.js' 'utils.js' 'del.js' 'test/specs/**/*.js'",
|
|
27
28
|
"beautify-check": "npm run beautify -- -k",
|
|
28
|
-
"eslint": "eslinter 'cache.js' 'utils.js' 'specs/**/*.js'",
|
|
29
|
+
"eslint": "eslinter 'cache.js' 'utils.js' 'del.js' 'specs/**/*.js'",
|
|
29
30
|
"eslint-fix": "npm run eslint -- --fix",
|
|
30
31
|
"autofix": "npm run beautify && npm run eslint-fix",
|
|
31
32
|
"check": "npm run beautify-check && npm run eslint",
|
|
@@ -80,8 +81,8 @@
|
|
|
80
81
|
},
|
|
81
82
|
"dependencies": {
|
|
82
83
|
"circular-json": "^0.3.1",
|
|
83
|
-
"del": "^3.0.0",
|
|
84
84
|
"graceful-fs": "^4.1.2",
|
|
85
|
+
"rimraf": "~2.6.2",
|
|
85
86
|
"write": "^0.2.1"
|
|
86
87
|
}
|
|
87
88
|
}
|
package/utils.js
CHANGED
|
@@ -4,7 +4,7 @@ var circularJson = require( 'circular-json' );
|
|
|
4
4
|
|
|
5
5
|
module.exports = {
|
|
6
6
|
|
|
7
|
-
tryParse: function ( filePath, defaultValue) {
|
|
7
|
+
tryParse: function ( filePath, defaultValue ) {
|
|
8
8
|
var result;
|
|
9
9
|
try {
|
|
10
10
|
result = this.readJSON( filePath );
|
|
@@ -32,7 +32,7 @@ module.exports = {
|
|
|
32
32
|
* @param {String} filePath Json filepath
|
|
33
33
|
* @param {*} data Object to serialize
|
|
34
34
|
*/
|
|
35
|
-
writeJSON: function (filePath, data ) {
|
|
35
|
+
writeJSON: function ( filePath, data ) {
|
|
36
36
|
write.sync( filePath, circularJson.stringify( data ) );
|
|
37
37
|
}
|
|
38
38
|
|