Skip to content

Commit 86fde7e

Browse files
authored
fix(cds-plugin-ui5): remove activation hook since it's not needed (#900)
Instead of supporting both variants, activate hook in object vs. Promise, the activate hook has been completely removed to avoid a switch statement based on version. This ensures simplicity of code and it wasn't needed at all... Fixes #899
1 parent 19c5f6d commit 86fde7e

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Diff for: packages/cds-plugin-ui5/cds-plugin.js

-9
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,3 @@ if (!skip) {
160160
bootstrapped();
161161
});
162162
}
163-
164-
// return callback for plugin activation
165-
module.exports = {
166-
activate: function activate(conf) {
167-
if (!skip) {
168-
log.debug("activate", conf);
169-
}
170-
},
171-
};

0 commit comments

Comments
 (0)