Skip to content

Commit

Permalink
fix: posix path resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
xudafeng committed Jan 28, 2019
1 parent 64c0de4 commit 4e8e144
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .sequelizerc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
const path = require('path');

module.exports = {
config: path.join(__dirname, 'database/config.js'),
'migrations-path': path.join(__dirname, 'database/migrations'),
config: path.join(__dirname, 'database', 'config.js'),
'migrations-path': path.join(__dirname, 'database, 'migrations'),
};
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "macaca-datahub",
"version": "2.3.10",
"version": "2.3.11",
"description": "Continuous data provider for development, testing, staging and production.",
"bin": {
"datahub": "./bin/datahub.js",
Expand Down Expand Up @@ -62,17 +62,19 @@
"eslint-config-egg": "^5.1.1",
"execa": "^0.10.0",
"git-contributor": "^1.0.8",
"husky": "^1.3.1",
"macaca-ecosystem": "*",
"pre-commit": "^1.2.2",
"vuepress": "^0.14.8",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.9.0"
},
"pre-commit": [
"lint"
],
"husky": {
"hooks": {
"pre-commit": "lint"
}
},
"ci": {
"version": "8"
},
Expand Down

0 comments on commit 4e8e144

Please sign in to comment.