Recently test runs have been full of useless logs from babel. Removing them in this PR.
Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties.
The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding
["@babel/plugin-proposal-private-methods", { "loose": true }]
to the "plugins" section of your Babel config.
Recently test runs have been full of useless logs from babel. Removing them in this PR.
Example run: https://github.com/NIAEFEUP/nijobs-fe/runs/5578809773?check_suite_focus=true