Skip to content

Commit c30f27e

Browse files
authored
fix: prevent lib/core/agent/index.js unexpectly loaded by plugin loader (#35)
1 parent 17c98e4 commit c30f27e

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

packages/beidou-core/lib/beidou.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const path = require('path');
88

99
const EGG_PATH = path.join(__dirname, '..');
1010
const loaderExtend = require('./core/loaders');
11-
const applicationExtend = require('./core/worker/index');
12-
const agentExtend = require('./core/agent/index');
11+
const applicationExtend = require('./core/worker/application');
12+
const agentExtend = require('./core/worker/agent');
1313

1414
module.exports = function (target) {
1515
loaderExtend(target);

0 commit comments

Comments
 (0)