mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
release: cut the 4.1.1 release (#6084)
* fix: require devtools-elements.js with the extension mentioned explicitly (#6079) This is a workaround for the issue with `@ngtools/webpack@6.1.0-rc.2`, described here: https://github.com/NativeScript/nativescript-dev-webpack/issues/607#issuecomment-405209925 * release: cut the 4.1.1 release * chore: Fix TS transpile error with 2.9 (#5906)
This commit is contained in:
committed by
Dimitar Topuzov
parent
86f9d38706
commit
4cd3a328f5
@@ -206,7 +206,7 @@ export function Deprecated(target: Object, key?: string | symbol, descriptor?: a
|
||||
var originalMethod = descriptor.value;
|
||||
|
||||
descriptor.value = function (...args: any[]) {
|
||||
console.log(`${key} is deprecated`);
|
||||
console.log(`${key.toString()} is deprecated`);
|
||||
|
||||
return originalMethod.apply(this, args);
|
||||
}
|
||||
@@ -225,7 +225,7 @@ export function Experimental(target: Object, key?: string | symbol, descriptor?:
|
||||
var originalMethod = descriptor.value;
|
||||
|
||||
descriptor.value = function (...args: any[]) {
|
||||
console.log(`${key} is experimental`);
|
||||
console.log(`${key.toString()} is experimental`);
|
||||
|
||||
return originalMethod.apply(this, args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user