@verdaccio/local-storage 10.0.6 → 10.1.1
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/lib/local-database.js +2 -2
- package/lib/local-fs.js +1 -1
- package/lib/utils.js +1 -1
- package/package.json +63 -62
- package/CHANGELOG.md +0 -560
package/lib/local-database.js
CHANGED
|
@@ -25,9 +25,9 @@ var _pkgUtils = require("./pkg-utils");
|
|
|
25
25
|
|
|
26
26
|
var _token = _interopRequireDefault(require("./token"));
|
|
27
27
|
|
|
28
|
-
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var
|
|
28
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
29
29
|
|
|
30
|
-
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
30
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
31
31
|
|
|
32
32
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
33
33
|
|
package/lib/local-fs.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.resourceNotAvailable = exports.pkgFileName = exports.noSuchFile = exports.fileExist = exports.fSError = exports.default = void 0;
|
|
7
7
|
|
|
8
8
|
var _fs = _interopRequireDefault(require("fs"));
|
|
9
9
|
|
package/lib/utils.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
exports.findPackages = findPackages;
|
|
6
7
|
exports.getFileStats = getFileStats;
|
|
7
8
|
exports.readDirectory = readDirectory;
|
|
8
|
-
exports.findPackages = findPackages;
|
|
9
9
|
|
|
10
10
|
var _fs = _interopRequireDefault(require("fs"));
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -1,63 +1,64 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
2
|
+
"name": "@verdaccio/local-storage",
|
|
3
|
+
"version": "10.1.1",
|
|
4
|
+
"description": "Local storage implementation",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"plugin",
|
|
7
|
+
"verdaccio",
|
|
8
|
+
"storage",
|
|
9
|
+
"local-storage"
|
|
10
|
+
],
|
|
11
|
+
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://verdaccio.org",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/verdaccio/monorepo",
|
|
17
|
+
"directory": "plugins/local-storage"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/verdaccio/monorepo/issues"
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
25
|
+
"main": "lib/index.js",
|
|
26
|
+
"types": "lib/index.d.ts",
|
|
27
|
+
"files": [
|
|
28
|
+
"lib/"
|
|
29
|
+
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=8"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@verdaccio/commons-api": "10.1.0",
|
|
35
|
+
"@verdaccio/file-locking": "10.1.0",
|
|
36
|
+
"@verdaccio/streams": "10.1.0",
|
|
37
|
+
"async": "3.2.3",
|
|
38
|
+
"debug": "4.3.3",
|
|
39
|
+
"lodash": "4.17.21",
|
|
40
|
+
"lowdb": "1.0.0",
|
|
41
|
+
"mkdirp": "1.0.4"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/minimatch": "^3.0.3",
|
|
45
|
+
"@types/node": "^14.0.0",
|
|
46
|
+
"@verdaccio/types": "10.2.2",
|
|
47
|
+
"minimatch": "^3.0.4",
|
|
48
|
+
"rmdir-sync": "^1.0.1"
|
|
49
|
+
},
|
|
50
|
+
"funding": {
|
|
51
|
+
"type": "opencollective",
|
|
52
|
+
"url": "https://opencollective.com/verdaccio"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"clean": "rimraf ./build",
|
|
56
|
+
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
|
|
57
|
+
"type-check": "tsc --noEmit -p tsconfig.build.json",
|
|
58
|
+
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
|
|
59
|
+
"build:js": "babel src/ --out-dir lib/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
|
60
|
+
"watch": "pnpm build:js -- --watch",
|
|
61
|
+
"build": "pnpm run build:js && pnpm run build:types"
|
|
62
|
+
},
|
|
63
|
+
"readme": "# @verdaccio/local-storage\n\n📦 File system storage plugin for verdaccio \n\n[](https://www.npmjs.com/package/@verdaccio/local-storage)\n[](https://circleci.com/gh/verdaccio/local-storage/tree/master)\n[](https://snyk.io/test/github/verdaccio/local-storage?targetFile=package.json)\n[](https://codecov.io/gh/verdaccio/local-storage)\n[](https://opencollective.com/verdaccio)\n[](http://chat.verdaccio.org/)\n\n[](https://www.npmjs.com/package/@verdaccio/local-storage)\n\n> This package is already built-in in verdaccio\n\n```\nnpm install @verdaccio/local-storage\n```\n\n### API\n\n### LocalDatabase\n\nThe main object that handle a JSON database the private packages.\n\n#### Constructor\n\n```\nnew LocalDatabase(config, logger);\n```\n\n* **config**: A verdaccio configuration instance.\n* **logger**: A logger instance\n\n### LocalFS\n\nA class that handle an package instance in the File System\n\n```\nnew LocalFS(packageStoragePath, logger);\n```\n\n\n\n## License\nVerdaccio is [MIT licensed](https://github.com/verdaccio/local-storage/blob/master/LICENSE).\n\n\n[](https://app.fossa.io/projects/git%2Bgithub.com%2Fverdaccio%2Flocal-storage?ref=badge_large)\n"
|
|
64
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,560 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [10.0.6](https://github.com/verdaccio/monorepo/compare/v10.0.5...v10.0.6) (2021-04-27)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* force update package ([3d460b0](https://github.com/verdaccio/monorepo/commit/3d460b0a2eed4c53c1342824bbab81f119d09db5))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [10.0.5](https://github.com/verdaccio/monorepo/compare/v10.0.4...v10.0.5) (2021-04-27)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Bug Fixes
|
|
21
|
-
|
|
22
|
-
* force update package ([0cb6b23](https://github.com/verdaccio/monorepo/commit/0cb6b232b691da4af7f76b6bf466e2db87c00a3e))
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
## [10.0.4](https://github.com/verdaccio/monorepo/compare/v10.0.3...v10.0.4) (2021-04-26)
|
|
29
|
-
|
|
30
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
## [10.0.3](https://github.com/verdaccio/monorepo/compare/v10.0.2...v10.0.3) (2021-04-26)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* force update package ([e56f4fd](https://github.com/verdaccio/monorepo/commit/e56f4fd39c273a5797126775086bdc93fd723afb))
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
## [10.0.2](https://github.com/verdaccio/monorepo/compare/v10.0.1...v10.0.2) (2021-04-01)
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### Bug Fixes
|
|
51
|
-
|
|
52
|
-
* add warning database name ([#402](https://github.com/verdaccio/monorepo/issues/402)) ([6c250c5](https://github.com/verdaccio/monorepo/commit/6c250c5c0ee041d48a0006c242bb15fe9768be5c))
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
## [10.0.1](https://github.com/verdaccio/monorepo/compare/v10.0.0...v10.0.1) (2021-03-29)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
### Bug Fixes
|
|
62
|
-
|
|
63
|
-
* restore self_path variable ([#396](https://github.com/verdaccio/monorepo/issues/396)) ([b369102](https://github.com/verdaccio/monorepo/commit/b369102ab7f54ec4218dcd49c9c7f8a34f3fe9a2))
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
# [10.0.0](https://github.com/verdaccio/monorepo/compare/v9.7.5...v10.0.0) (2021-03-29)
|
|
70
|
-
|
|
71
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
## [9.7.5](https://github.com/verdaccio/monorepo/compare/v9.7.4...v9.7.5) (2021-03-05)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
### Bug Fixes
|
|
81
|
-
|
|
82
|
-
* update dependencies ([#393](https://github.com/verdaccio/monorepo/issues/393)) ([51cb3d4](https://github.com/verdaccio/monorepo/commit/51cb3d4a533590054085dca1e5270cf9ebdeacfd))
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
## [9.7.4](https://github.com/verdaccio/monorepo/compare/v9.7.3...v9.7.4) (2020-10-31)
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
### Bug Fixes
|
|
92
|
-
|
|
93
|
-
* update lodash ([c7fe587](https://github.com/verdaccio/monorepo/commit/c7fe587a6d8be337d7099cbd459320cbda4cfd91))
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
## [9.7.2](https://github.com/verdaccio/monorepo/compare/v9.7.1...v9.7.2) (2020-07-20)
|
|
100
|
-
|
|
101
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
## [9.7.1](https://github.com/verdaccio/monorepo/compare/v9.7.0...v9.7.1) (2020-07-10)
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
### Bug Fixes
|
|
111
|
-
|
|
112
|
-
* update dependencies ([#375](https://github.com/verdaccio/monorepo/issues/375)) ([1e7aeec](https://github.com/verdaccio/monorepo/commit/1e7aeec31b056979285e272793a95b8c75d57c77))
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
# [9.7.0](https://github.com/verdaccio/monorepo/compare/v9.6.1...v9.7.0) (2020-06-24)
|
|
119
|
-
|
|
120
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
## [9.6.1](https://github.com/verdaccio/monorepo/compare/v9.6.0...v9.6.1) (2020-06-07)
|
|
127
|
-
|
|
128
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
## [9.5.1](https://github.com/verdaccio/monorepo/compare/v9.5.0...v9.5.1) (2020-06-03)
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
### Bug Fixes
|
|
138
|
-
|
|
139
|
-
* restore Node v8 support ([#361](https://github.com/verdaccio/monorepo/issues/361)) ([9be55a1](https://github.com/verdaccio/monorepo/commit/9be55a1deebe954e8eef9edc59af9fd16e29daed))
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
# [9.5.0](https://github.com/verdaccio/monorepo/compare/v9.4.1...v9.5.0) (2020-05-02)
|
|
146
|
-
|
|
147
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
# [9.4.0](https://github.com/verdaccio/monorepo/compare/v9.3.4...v9.4.0) (2020-03-21)
|
|
154
|
-
|
|
155
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
## [9.3.4](https://github.com/verdaccio/monorepo/compare/v9.3.3...v9.3.4) (2020-03-11)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
### Bug Fixes
|
|
165
|
-
|
|
166
|
-
* update mkdirp@1.0.3 ([#341](https://github.com/verdaccio/monorepo/issues/341)) ([96db337](https://github.com/verdaccio/monorepo/commit/96db3378a4f2334ec89cfb113af95e9a3a6eb050))
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
## [9.3.2](https://github.com/verdaccio/monorepo/compare/v9.3.1...v9.3.2) (2020-03-08)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
### Bug Fixes
|
|
176
|
-
|
|
177
|
-
* update dependencies ([#332](https://github.com/verdaccio/monorepo/issues/332)) ([b6165ae](https://github.com/verdaccio/monorepo/commit/b6165aea9b7e4012477081eae68bfa7159c58f56))
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
## [9.3.1](https://github.com/verdaccio/monorepo/compare/v9.3.0...v9.3.1) (2020-02-23)
|
|
184
|
-
|
|
185
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
# [9.3.0](https://github.com/verdaccio/monorepo/compare/v9.2.0...v9.3.0) (2020-01-29)
|
|
192
|
-
|
|
193
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
# [9.0.0](https://github.com/verdaccio/monorepo/compare/v8.5.3...v9.0.0) (2020-01-07)
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
### Bug Fixes
|
|
203
|
-
|
|
204
|
-
* prevent circular structure exception ([#312](https://github.com/verdaccio/monorepo/issues/312)) ([f565461](https://github.com/verdaccio/monorepo/commit/f565461f5bb2873467eeb4372a12fbf4a4974d17))
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
## [8.5.2](https://github.com/verdaccio/monorepo/compare/v8.5.1...v8.5.2) (2019-12-25)
|
|
211
|
-
|
|
212
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
## [8.5.1](https://github.com/verdaccio/monorepo/compare/v8.5.0...v8.5.1) (2019-12-24)
|
|
219
|
-
|
|
220
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
# [8.5.0](https://github.com/verdaccio/monorepo/compare/v8.4.2...v8.5.0) (2019-12-22)
|
|
227
|
-
|
|
228
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
## [8.4.2](https://github.com/verdaccio/monorepo/compare/v8.4.1...v8.4.2) (2019-11-23)
|
|
235
|
-
|
|
236
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
## [8.4.1](https://github.com/verdaccio/monorepo/compare/v8.4.0...v8.4.1) (2019-11-22)
|
|
243
|
-
|
|
244
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
# [8.4.0](https://github.com/verdaccio/monorepo/compare/v8.3.0...v8.4.0) (2019-11-22)
|
|
251
|
-
|
|
252
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
# [8.3.0](https://github.com/verdaccio/monorepo/compare/v8.2.0...v8.3.0) (2019-10-27)
|
|
259
|
-
|
|
260
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
# [8.2.0](https://github.com/verdaccio/monorepo/compare/v8.2.0-next.0...v8.2.0) (2019-10-23)
|
|
267
|
-
|
|
268
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
# [8.2.0-next.0](https://github.com/verdaccio/monorepo/compare/v8.1.4...v8.2.0-next.0) (2019-10-08)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
### Bug Fixes
|
|
278
|
-
|
|
279
|
-
* fixed lint errors ([5e677f7](https://github.com/verdaccio/monorepo/commit/5e677f7))
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
## [8.1.2](https://github.com/verdaccio/monorepo/compare/v8.1.1...v8.1.2) (2019-09-29)
|
|
286
|
-
|
|
287
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
## [8.1.1](https://github.com/verdaccio/monorepo/compare/v8.1.0...v8.1.1) (2019-09-26)
|
|
294
|
-
|
|
295
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
# [8.1.0](https://github.com/verdaccio/monorepo/compare/v8.0.1-next.1...v8.1.0) (2019-09-07)
|
|
302
|
-
|
|
303
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
## [8.0.1-next.1](https://github.com/verdaccio/monorepo/compare/v8.0.1-next.0...v8.0.1-next.1) (2019-08-29)
|
|
310
|
-
|
|
311
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
## [8.0.1-next.0](https://github.com/verdaccio/monorepo/compare/v8.0.0...v8.0.1-next.0) (2019-08-29)
|
|
318
|
-
|
|
319
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
# [8.0.0](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.4...v8.0.0) (2019-08-22)
|
|
326
|
-
|
|
327
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
# [8.0.0-next.4](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.3...v8.0.0-next.4) (2019-08-18)
|
|
334
|
-
|
|
335
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
# [8.0.0-next.3](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.2...v8.0.0-next.3) (2019-08-16)
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
### Bug Fixes
|
|
345
|
-
|
|
346
|
-
* restore closure ([32b9d7e](https://github.com/verdaccio/monorepo/commit/32b9d7e))
|
|
347
|
-
* **build:** error on types for fs callback ([cc35acb](https://github.com/verdaccio/monorepo/commit/cc35acb))
|
|
348
|
-
* Add DATE and VERSION in search result ([e352b75](https://github.com/verdaccio/monorepo/commit/e352b75))
|
|
349
|
-
* avoid open write stream if resource exist [#1191](https://github.com/verdaccio/monorepo/issues/1191) ([f041d3f](https://github.com/verdaccio/monorepo/commit/f041d3f))
|
|
350
|
-
* bug fixing integration ([6c75ac8](https://github.com/verdaccio/monorepo/commit/6c75ac8))
|
|
351
|
-
* build before publish ([cd6c7ff](https://github.com/verdaccio/monorepo/commit/cd6c7ff))
|
|
352
|
-
* check whether path exist before return result ([a4d2af1](https://github.com/verdaccio/monorepo/commit/a4d2af1))
|
|
353
|
-
* flow issues ([f42a284](https://github.com/verdaccio/monorepo/commit/f42a284))
|
|
354
|
-
* ignore flow on this one, we need it ([c8e0b2b](https://github.com/verdaccio/monorepo/commit/c8e0b2b))
|
|
355
|
-
* local storage requires package.json file for read, save and create all the time ([33c847b](https://github.com/verdaccio/monorepo/commit/33c847b))
|
|
356
|
-
* migration from main repository merge [#306](https://github.com/verdaccio/monorepo/issues/306) ([8fbe86e](https://github.com/verdaccio/monorepo/commit/8fbe86e))
|
|
357
|
-
* missing callback ([abfc422](https://github.com/verdaccio/monorepo/commit/abfc422))
|
|
358
|
-
* missing error code ([7121939](https://github.com/verdaccio/monorepo/commit/7121939))
|
|
359
|
-
* move to local storage the fs location handler ([3b12083](https://github.com/verdaccio/monorepo/commit/3b12083))
|
|
360
|
-
* mtimeMs is not backward compatible ([c6f74eb](https://github.com/verdaccio/monorepo/commit/c6f74eb))
|
|
361
|
-
* remove temp file whether is emtpy and fails ([655102f](https://github.com/verdaccio/monorepo/commit/655102f))
|
|
362
|
-
* remove uncessary async ([3e3e3a6](https://github.com/verdaccio/monorepo/commit/3e3e3a6))
|
|
363
|
-
* remove unused parameters ([554e301](https://github.com/verdaccio/monorepo/commit/554e301))
|
|
364
|
-
* restore build path ([4902042](https://github.com/verdaccio/monorepo/commit/4902042))
|
|
365
|
-
* return time as milliseconds ([15467ba](https://github.com/verdaccio/monorepo/commit/15467ba))
|
|
366
|
-
* sync after set secret ([2abae4f](https://github.com/verdaccio/monorepo/commit/2abae4f))
|
|
367
|
-
* temp files are written into the storage ([89a1dc8](https://github.com/verdaccio/monorepo/commit/89a1dc8))
|
|
368
|
-
* unit test ([995a27c](https://github.com/verdaccio/monorepo/commit/995a27c))
|
|
369
|
-
* update @verdaccio/file-locking@1.0.0 ([9bd36f0](https://github.com/verdaccio/monorepo/commit/9bd36f0))
|
|
370
|
-
* update lodash types ([184466c](https://github.com/verdaccio/monorepo/commit/184466c))
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
### Features
|
|
374
|
-
|
|
375
|
-
* token support with level.js ([#168](https://github.com/verdaccio/monorepo/issues/168)) ([ca877ff](https://github.com/verdaccio/monorepo/commit/ca877ff))
|
|
376
|
-
* **build:** standardize build ([33fe090](https://github.com/verdaccio/monorepo/commit/33fe090))
|
|
377
|
-
* change new db name to verdaccio ([#83](https://github.com/verdaccio/monorepo/issues/83)) ([edfca9f](https://github.com/verdaccio/monorepo/commit/edfca9f))
|
|
378
|
-
* drop node v6 support ([664f288](https://github.com/verdaccio/monorepo/commit/664f288))
|
|
379
|
-
* implement search ([2e2bb32](https://github.com/verdaccio/monorepo/commit/2e2bb32))
|
|
380
|
-
* migrate to typescript ([c439d25](https://github.com/verdaccio/monorepo/commit/c439d25))
|
|
381
|
-
* update database method with callbacks ([ef202a9](https://github.com/verdaccio/monorepo/commit/ef202a9))
|
|
382
|
-
* update minor dependencies ([007b026](https://github.com/verdaccio/monorepo/commit/007b026))
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
# Changelog
|
|
389
|
-
|
|
390
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
391
|
-
|
|
392
|
-
## [2.3.0](https://github.com/verdaccio/local-storage/compare/v2.2.1...v2.3.0) (2019-08-13)
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
### Bug Fixes
|
|
396
|
-
|
|
397
|
-
* restore closure ([8ec27f2](https://github.com/verdaccio/local-storage/commit/8ec27f2))
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
### Features
|
|
401
|
-
|
|
402
|
-
* add logging for each method ([3c915c7](https://github.com/verdaccio/local-storage/commit/3c915c7))
|
|
403
|
-
* token support with level.js ([#168](https://github.com/verdaccio/local-storage/issues/168)) ([16727bd](https://github.com/verdaccio/local-storage/commit/16727bd))
|
|
404
|
-
|
|
405
|
-
### [2.2.1](https://github.com/verdaccio/local-storage/compare/v2.2.0...v2.2.1) (2019-06-30)
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
### Bug Fixes
|
|
409
|
-
|
|
410
|
-
* **build:** error on types for fs callback ([774d808](https://github.com/verdaccio/local-storage/commit/774d808))
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
## [2.2.0](https://github.com/verdaccio/local-storage/compare/v2.1.0...v2.2.0) (2019-06-30)
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
### Features
|
|
418
|
-
|
|
419
|
-
* **build:** standardize build ([eba832e](https://github.com/verdaccio/local-storage/commit/eba832e))
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
# [2.1.0](https://github.com/verdaccio/local-storage/compare/v2.0.0...v2.1.0) (2019-03-29)
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
### Bug Fixes
|
|
427
|
-
|
|
428
|
-
* remove uncessary async ([23a09f3](https://github.com/verdaccio/local-storage/commit/23a09f3))
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
### Features
|
|
432
|
-
|
|
433
|
-
* drop node v6 support ([ef548e0](https://github.com/verdaccio/local-storage/commit/ef548e0))
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
# [2.0.0](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.3...v2.0.0) (2019-03-29)
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
<a name="2.0.0-beta.3"></a>
|
|
442
|
-
# [2.0.0-beta.3](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.2...v2.0.0-beta.3) (2019-02-24)
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
### Bug Fixes
|
|
446
|
-
|
|
447
|
-
* update [@verdaccio](https://github.com/verdaccio)/file-locking@1.0.0 ([587245d](https://github.com/verdaccio/local-storage/commit/587245d))
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
<a name="2.0.0-beta.2"></a>
|
|
452
|
-
# [2.0.0-beta.2](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2019-02-24)
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
### Bug Fixes
|
|
456
|
-
|
|
457
|
-
* avoid open write stream if resource exist [#1191](https://github.com/verdaccio/local-storage/issues/1191) ([b13904a](https://github.com/verdaccio/local-storage/commit/b13904a))
|
|
458
|
-
* package.json to reduce vulnerabilities ([97e9dc3](https://github.com/verdaccio/local-storage/commit/97e9dc3))
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
<a name="2.0.0-beta.1"></a>
|
|
463
|
-
# [2.0.0-beta.1](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.0...v2.0.0-beta.1) (2019-02-03)
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
<a name="2.0.0-beta.0"></a>
|
|
468
|
-
# [2.0.0-beta.0](https://github.com/verdaccio/local-storage/compare/v1.2.0...v2.0.0-beta.0) (2019-02-01)
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
### Bug Fixes
|
|
472
|
-
|
|
473
|
-
* **deps:** update dependency lodash to v4.17.11 ([682616a](https://github.com/verdaccio/local-storage/commit/682616a))
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
### Features
|
|
477
|
-
|
|
478
|
-
* custom storage location ([b1423cd](https://github.com/verdaccio/local-storage/commit/b1423cd))
|
|
479
|
-
* migrate to typescript ([fe8344b](https://github.com/verdaccio/local-storage/commit/fe8344b))
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
### BREAKING CHANGES
|
|
483
|
-
|
|
484
|
-
* we change from boolean value to string within the config file
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
<a name="1.2.0"></a>
|
|
489
|
-
# [1.2.0](https://github.com/verdaccio/local-storage/compare/v1.1.3...v1.2.0) (2018-08-25)
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
### Features
|
|
493
|
-
|
|
494
|
-
* change new db name to verdaccio ([#83](https://github.com/verdaccio/local-storage/issues/83)) ([143977d](https://github.com/verdaccio/local-storage/commit/143977d))
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
<a name="1.1.3"></a>
|
|
499
|
-
## [1.1.3](https://github.com/verdaccio/local-storage/compare/v1.1.2...v1.1.3) (2018-07-15)
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
### Bug Fixes
|
|
503
|
-
|
|
504
|
-
* remove unused parameters ([3ce374a](https://github.com/verdaccio/local-storage/commit/3ce374a))
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
<a name="1.1.2"></a>
|
|
509
|
-
## [1.1.2](https://github.com/verdaccio/local-storage/compare/v1.1.1...v1.1.2) (2018-06-09)
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
### Bug Fixes
|
|
513
|
-
|
|
514
|
-
* return time as milliseconds ([c98be85](https://github.com/verdaccio/local-storage/commit/c98be85))
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
<a name="1.1.1"></a>
|
|
519
|
-
## [1.1.1](https://github.com/verdaccio/local-storage/compare/v1.1.0...v1.1.1) (2018-06-08)
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
### Bug Fixes
|
|
523
|
-
|
|
524
|
-
* check whether path exist before return result ([cb5d4ef](https://github.com/verdaccio/local-storage/commit/cb5d4ef))
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
<a name="1.1.0"></a>
|
|
529
|
-
# [1.1.0](https://github.com/verdaccio/local-storage/compare/v1.0.3...v1.1.0) (2018-06-08)
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
### Bug Fixes
|
|
533
|
-
|
|
534
|
-
* **deps:** update dependency async to v2.6.1 ([487b095](https://github.com/verdaccio/local-storage/commit/487b095))
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
### Features
|
|
538
|
-
|
|
539
|
-
* implement search ([f884a24](https://github.com/verdaccio/local-storage/commit/f884a24))
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
<a name="0.2.0"></a>
|
|
544
|
-
# [0.2.0](https://github.com/verdaccio/local-storage/compare/v0.1.4...v0.2.0) (2018-01-17)
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
### Features
|
|
548
|
-
|
|
549
|
-
* update minor dependencies ([92daa81](https://github.com/verdaccio/local-storage/commit/92daa81))
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
<a name="0.1.4"></a>
|
|
554
|
-
## [0.1.4](https://github.com/verdaccio/local-storage/compare/v0.1.3...v0.1.4) (2018-01-17)
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
### Bug Fixes
|
|
558
|
-
|
|
559
|
-
* remove temp file whether is emtpy and fails ([593e162](https://github.com/verdaccio/local-storage/commit/593e162))
|
|
560
|
-
* unit test ([2573f30](https://github.com/verdaccio/local-storage/commit/2573f30))
|