Skip to content

Commit

Permalink
refactor: rename classes and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
@jotadeveloper authored and sergiohgz committed Aug 13, 2019
1 parent e8b2c09 commit 616cf53
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
20 changes: 10 additions & 10 deletions plugins/local-storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,34 @@
"cover": "cross-env NODE_ENV=test nyc npm t"
},
"dependencies": {
"@verdaccio/file-locking": "^0.0.5",
"@verdaccio/streams": "^0.0.2",
"@verdaccio/file-locking": "0.0.5",
"@verdaccio/streams": "0.0.2",
"async": "2.5.0",
"http-errors": "1.6.2",
"lodash": "4.17.4",
"mkdirp": "0.5.1"
},
"devDependencies": {
"@verdaccio/types": "^0.1.0",
"@verdaccio/types": "0.1.0",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-eslint": "7.2.3",
"babel-jest": "21.2.0",
"babel-plugin-flow-runtime": "0.11.1",
"babel-plugin-istanbul": "4.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-preset-env": "1.6.0",
"babel-preset-flow": "6.23.0",
"cross-env": "5.0.5",
"eslint": "^4.4.1",
"eslint": "4.4.1",
"eslint-config-google": "0.9.1",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jest": "21.2.0",
"flow-bin": "0.52.0",
"flow-runtime": "0.13.0",
"jest": "^21.2.1",
"jest": "21.2.1",
"nyc": "11.1.0",
"rmdir-sync": "^1.0.1"
"rmdir-sync": "1.0.1"
},
"nyc": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion plugins/local-storage/src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @flow

import LocalDatabase from './local-data';
import LocalDatabase from './local-database';

export {LocalDatabase};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import type {ILocalPackageManager, ILocalData} from '@verdaccio/local-storage';

/**
* Handle local database.
* FUTURE: must be a plugin.
*/
class LocalDatabase implements ILocalData {

Expand Down

0 comments on commit 616cf53

Please sign in to comment.