chore(release): @nativescript/types@8.0.1

This commit is contained in:
Nathan Walker
2021-04-21 15:34:28 -07:00
parent edbe13bfe0
commit f3333e09fe
5 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@nativescript/types-android", "name": "@nativescript/types-android",
"version": "8.0.0", "version": "8.0.1",
"description": "NativeScript Types for Android.", "description": "NativeScript Types for Android.",
"homepage": "https://nativescript.org", "homepage": "https://nativescript.org",
"repository": { "repository": {

View File

@ -37,7 +37,7 @@
export function readText(path: string, encoding: string, callback: CompleteCallback, context: any); export function readText(path: string, encoding: string, callback: CompleteCallback, context: any);
export function read(path: string, callback: CompleteCallback, context: any); export function read(path: string, callback: CompleteCallback, context: any);
export function writeText(path: string, content: string, encoding: string, callback: CompleteCallback, context: any); export function writeText(path: string, content: string, encoding: string, callback: CompleteCallback, context: any);
export function write(path: string, content: native.Array<number>, callback: CompleteCallback, context: any); export function write(path: string, content: androidNative.Array<number>, callback: CompleteCallback, context: any);
} }
export module Http { export module Http {
@ -108,9 +108,9 @@
context: android.content.Context, context: android.content.Context,
backgroundRepeat: string, backgroundRepeat: string,
backgroundPosition: string, backgroundPosition: string,
backgroundPositionParsedCSSValues: native.Array<CSSValue>, backgroundPositionParsedCSSValues: androidNative.Array<CSSValue>,
backgroundSize: string, backgroundSize: string,
backgroundSizeParsedCSSValues: native.Array<CSSValue> backgroundSizeParsedCSSValues: androidNative.Array<CSSValue>
); );
public getBorderTopColor(): number; public getBorderTopColor(): number;

View File

@ -1,6 +1,6 @@
{ {
"name": "@nativescript/types-ios", "name": "@nativescript/types-ios",
"version": "8.0.0", "version": "8.0.1",
"description": "NativeScript Types for iOS.", "description": "NativeScript Types for iOS.",
"homepage": "https://nativescript.org", "homepage": "https://nativescript.org",
"repository": { "repository": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@nativescript/types", "name": "@nativescript/types",
"version": "8.0.0", "version": "8.0.1",
"description": "NativeScript Types for all supported platforms.", "description": "NativeScript Types for all supported platforms.",
"homepage": "https://nativescript.org", "homepage": "https://nativescript.org",
"repository": { "repository": {
@ -12,7 +12,7 @@
], ],
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"@nativescript/types-ios": "8.0.0", "@nativescript/types-ios": "8.0.1",
"@nativescript/types-android": "8.0.0" "@nativescript/types-android": "8.0.1"
} }
} }

View File

@ -21,7 +21,7 @@ fi
echo "Creating typings project with @nativescript/ios@$IOS_RUNTIME_VERSION..." echo "Creating typings project with @nativescript/ios@$IOS_RUNTIME_VERSION..."
rm -rf ios-typings-prj rm -rf ios-typings-prj
ns create --js ios-typings-prj ns create --template @nativescript/template-blank@7.0.4 ios-typings-prj
ns platform add ios@$IOS_RUNTIME_VERSION --path ios-typings-prj/ ns platform add ios@$IOS_RUNTIME_VERSION --path ios-typings-prj/
if [ -n "$METADATA_GENERATOR_PATH" ] if [ -n "$METADATA_GENERATOR_PATH" ]