You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fact that the format of the list of allowed verbs is like:
exportconstSET=newSet(['abandon',
...
'write',]);
Makes it unnecessarily hard to update, sort and maintain. It would be much easier if all the allowed verbs was in a plain textfile, with each verb separated by a single newline (\n). Just like the format of path-to-additional-verbs.
The code to parse that type of list must already be there thanks to the path-to-additional-verbs functionality.
The text was updated successfully, but these errors were encountered:
I only don't know whether it is possible to include a text file in the distribution. @Fryuni would you know more?
GH Actions just clone the entire repo into a folder. If we use all relative paths from the built artifact (using join and resolve with __dirname) it should all work fine.
The fact that the format of the list of allowed verbs is like:
Makes it unnecessarily hard to update, sort and maintain. It would be much easier if all the allowed verbs was in a plain textfile, with each verb separated by a single newline (
\n
). Just like the format ofpath-to-additional-verbs
.The code to parse that type of list must already be there thanks to the
path-to-additional-verbs
functionality.The text was updated successfully, but these errors were encountered: