Skip to content

Commit 601deed

Browse files
committed
fix: fixed bug
1 parent c6669e5 commit 601deed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ const internal = [
2525
'Env',
2626
'validateSchema',
2727
'pluginResolution',
28-
'CONSTANTS',
2928
].reduce((obj, key) => {
3029
obj[key] = `./src/${key}`;
3130
return obj;
3231
}, {});
3332

33+
// special
34+
internal.CONSTANTS = './src/constants';
35+
3436
Object.keys(internal).forEach(key => {
3537
defineProperty(key, internal);
3638
});

0 commit comments

Comments
 (0)