@akylas/nativescript-cli 8.8.3 → 8.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PlistParser = void 0;
4
- const simple_plist_1 = require("simple-plist");
4
+ const SimplePlist = require("simple-plist");
5
5
  const yok_1 = require("./yok");
6
6
  class PlistParser {
7
7
  parseFile(plistFilePath) {
8
8
  return new Promise((resolve, reject) => {
9
- simple_plist_1.default.readFile(plistFilePath, (err, obj) => {
9
+ SimplePlist.readFile(plistFilePath, (err, obj) => {
10
10
  if (err) {
11
11
  reject(err);
12
12
  }
@@ -17,7 +17,7 @@ class PlistParser {
17
17
  });
18
18
  }
19
19
  parseFileSync(plistFilePath) {
20
- return simple_plist_1.default.readFileSync(plistFilePath);
20
+ return SimplePlist.readFileSync(plistFilePath);
21
21
  }
22
22
  }
23
23
  exports.PlistParser = PlistParser;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akylas/nativescript-cli",
3
3
  "main": "./lib/nativescript-cli-lib.js",
4
- "version": "8.8.3",
4
+ "version": "8.8.4",
5
5
  "author": "NativeScript <support@nativescript.org>",
6
6
  "description": "Command-line interface for building NativeScript projects",
7
7
  "bin": {
@@ -103,7 +103,7 @@
103
103
  "semver": "7.6.3",
104
104
  "shelljs": "0.8.5",
105
105
  "simple-git": "3.27.0",
106
- "simple-plist": "1.3.1",
106
+ "simple-plist": "1.4.0",
107
107
  "source-map": "0.8.0-beta.0",
108
108
  "stringify-package": "1.0.1",
109
109
  "tar": "7.4.3",