Adds inline styling support and other native methods

This commit is contained in:
Atul R
2019-08-10 11:21:36 +02:00
parent c3de181e32
commit 4f9e27d36a
11 changed files with 222 additions and 36 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
const path = require("path");
const fs = require("fs");
const process = require("child_process");
const childProcess = require("child_process");
const ROOT_DIR = path.resolve(__dirname, "../");
const MOC_AUTOGEN_DIR = path.resolve(ROOT_DIR, "src/cpp/autogen");
@@ -53,7 +53,7 @@ const main = () => {
includeFilePath
);
console.log(command);
process.exec(command, error => {
childProcess.exec(command, {}, error => {
if (error) {
console.error(`exec error: ${error}`);
return;