From 244849d05bc371050f699125d05252ebf5976d4b Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Fri, 25 Sep 2020 10:39:45 -0700 Subject: [PATCH] fix(core): global handling with env.production flag closes https://github.com/NativeScript/NativeScript/issues/8778 closes https://github.com/NativeScript/NativeScript/issues/8872 --- packages/core/package.json | 2 +- packages/core/ui/styling/css-selector/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/core/package.json b/packages/core/package.json index c877bfcc1f..e842111604 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "main": "index", "types": "index.d.ts", "description": "NativeScript Core Modules", - "version": "7.0.5", + "version": "7.0.6", "homepage": "https://nativescript.org", "repository": { "type": "git", diff --git a/packages/core/ui/styling/css-selector/index.ts b/packages/core/ui/styling/css-selector/index.ts index 1ac6846b37..168a1cac74 100644 --- a/packages/core/ui/styling/css-selector/index.ts +++ b/packages/core/ui/styling/css-selector/index.ts @@ -1,3 +1,4 @@ +import '../../../globals'; import { isNullOrUndefined } from '../../../utils/types'; import * as cssParser from '../../../css';