From 3437ed7e1483cddf75aeca9bd8ff475e449f110f Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Fri, 25 Sep 2020 10:42:43 -0700 Subject: [PATCH] fix(core): global handling with env.production flag (#8903) 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 c877bfcc1..e84211160 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 1ac6846b3..168a1cac7 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';