Use relative imports in tns-core-modules.

Use tns-core-modules/* imports in outside code (apps, tests, etc)
This commit is contained in:
Hristo Deshev
2017-03-10 14:46:03 +02:00
committed by Hristo Deshev
parent dfb4e031a6
commit 629eb6e683
503 changed files with 1836 additions and 1839 deletions

View File

@ -1,4 +1,4 @@
import * as parser from "css";
import * as parser from "../../../css";
/**
* An interface describing the shape of a type on which the selectors may apply.

View File

@ -1,8 +1,8 @@
import { Node, Declaration, Changes, ChangeMap } from "ui/styling/css-selector";
import { isNullOrUndefined } from "utils/types";
import { escapeRegexSymbols } from "utils/utils";
import { Node, Declaration, Changes, ChangeMap } from ".";
import { isNullOrUndefined } from "../../../utils/types";
import { escapeRegexSymbols } from "../../../utils/utils";
import * as cssParser from "css";
import * as cssParser from "../../../css";
import * as selectorParser from "../css-selector-parser";
const enum Specificity {