mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
"use strict";
|
|
|
|
const hook = require("@nativescript/hook")(__dirname);
|
|
|
|
const { getProjectDir } = require("./helpers/projectHelpers");
|
|
|
|
const projectDir = getProjectDir();
|
|
|
|
if (projectDir) {
|
|
hook.preuninstall();
|
|
}
|