-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support _meta.pre_function to execute custom logic before execution of each phase #11793
base: master
Are you sure you want to change the base?
Conversation
…tion of each phase
@Revolyssup some CI test cases failed |
|os|print|tonumber|math|pcall|xpcall|unpack | ||
|pairs|ipairs|assert|module|package | ||
|coroutine|[gs]etfenv|next|rawget|rawset | ||
|loadstring|dofile|collectgarbage|load |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
load
is added here which is not present in original lj-relang causing lint check to fail
@@ -0,0 +1,228 @@ | |||
#!/usr/bin/env perl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we update the tool utils/lj-releng
in a separate PR?
one PR for one thing
small PR is easier to review
Add pre_function to the meta of the plugin to allow some personalized code to run before all plugins run. For example, register personalized variables so that these temporary variables can be referenced and used in the plugin.
Description
Fixes # (issue)
Add pre_function to the meta of the plugin to allow some personalized code to run before all plugins run. For example, register personalized variables so that these temporary variables can be referenced and used in the plugin.
Checklist