Github actions require checking in the entire node_modules or using a vercel service what the fuck github

This commit is contained in:
2024-06-15 11:40:38 +02:00
parent 5cfda63817
commit c835cadd76
614 changed files with 433819 additions and 0 deletions

16
node_modules/deprecation/dist-web/index.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
class Deprecation extends Error {
constructor(message) {
super(message); // Maintains proper stack trace (only available on V8)
/* istanbul ignore next */
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
this.name = 'Deprecation';
}
}
export { Deprecation };