Adding graph ql for Helm versions (#21)
* Adding graphql query to fetch latest helm release of specified type * Updating typescript version and js file * Fixing PR comments in release * Adding feature flag as environment variable in release * Changing feature flag name * Updating files as per latest changes in master after resolving merge conflicts * Removing non prod modules
This commit is contained in:
16
node_modules/deprecation/dist-web/index.js
generated
vendored
Normal file
16
node_modules/deprecation/dist-web/index.js
generated
vendored
Normal 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 };
|
Reference in New Issue
Block a user