mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
refactor: update types for local storage
This commit is contained in:
parent
710f1fc3f5
commit
5cc8405d4f
2 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@
|
|||
"@verdaccio/file-locking": "^0.0.5",
|
||||
"@verdaccio/local-storage": "^0.0.11",
|
||||
"@verdaccio/streams": "^0.0.2",
|
||||
"@verdaccio/types": "^0.0.9",
|
||||
"@verdaccio/types": "^0.0.8",
|
||||
"JSONStream": "^1.1.1",
|
||||
"apache-md5": "^1.1.2",
|
||||
"async": "^2.6.0",
|
||||
|
@ -54,7 +54,6 @@
|
|||
"babel-core": "6.26.0",
|
||||
"babel-eslint": "8.0.3",
|
||||
"babel-jest": "^21.2.0",
|
||||
"babel-jest": "^21.2.0",
|
||||
"babel-loader": "7.1.2",
|
||||
"babel-plugin-flow-runtime": "0.15.0",
|
||||
"babel-plugin-transform-async-to-generator": "^6.24.1",
|
||||
|
|
|
@ -20,12 +20,13 @@ import type {
|
|||
Config,
|
||||
MergeTags,
|
||||
Version,
|
||||
ILocalFS,
|
||||
DistFile,
|
||||
Callback,
|
||||
ILocalData,
|
||||
Logger,
|
||||
Utils} from '@verdaccio/types';
|
||||
import type {
|
||||
ILocalFS,
|
||||
ILocalData} from '@verdaccio/local-storage';
|
||||
|
||||
const pkgFileName = 'package.json';
|
||||
const fileExist = 'EEXISTS';
|
||||
|
|
Loading…
Reference in a new issue