mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
Merge pull request #8185 from NativeScript/darind/css-parser-default
feat: Make css-tree the default parser
This commit is contained in:
@ -53,12 +53,12 @@ function ensureCssAnimationParserModule() {
|
||||
}
|
||||
}
|
||||
|
||||
let parser: "rework" | "nativescript" | "css-tree" = "rework";
|
||||
let parser: "rework" | "nativescript" | "css-tree" = "css-tree";
|
||||
try {
|
||||
const appConfig = require("~/package.json");
|
||||
if (appConfig) {
|
||||
if (appConfig.cssParser === "css-tree") {
|
||||
parser = "css-tree";
|
||||
if (appConfig.cssParser === "rework") {
|
||||
parser = "rework";
|
||||
} else if (appConfig.cssParser === "nativescript") {
|
||||
parser = "nativescript";
|
||||
}
|
||||
|
Reference in New Issue
Block a user