Skip to content

Commit e788da4

Browse files
committed
merging
1 parent abb88d0 commit e788da4

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

webui/scripts/hooks/before_webpack.js

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
as shown at https://oss.oracle.com/licenses/upl/
55
66
*/
7-
8-
'use strict';
9-
10-
module.exports = function (configObj) {
11-
return new Promise((resolve, reject) => {
12-
console.log("Running before_webpack hook.");
13-
// const { config } = configObj.webpack;
14-
resolve(configObj);
15-
});
16-
};
7+
'use strict';
8+
9+
module.exports = function (configObj) {
10+
return new Promise((resolve) => {
11+
console.log("Running before_webpack hook.");
12+
// const { config } = configObj.webpack;
13+
resolve(configObj);
14+
});
15+
};

0 commit comments

Comments
 (0)