nativescript 8.8.1 → 8.8.2
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 +1 @@
|
|
|
1
|
-
{"@jsdevtools/coverage-istanbul-loader":"3.0.5","karma":"6.4.4","karma-coverage":"2.2.1","karma-nativescript-launcher":"0.4.0","mocha":"10.7.3","karma-mocha":"2.0.1","karma-chai":"0.1.0","karma-jasmine":"4.0.2","karma-qunit":"4.2.
|
|
1
|
+
{"@jsdevtools/coverage-istanbul-loader":"3.0.5","karma":"6.4.4","karma-coverage":"2.2.1","karma-nativescript-launcher":"0.4.0","mocha":"10.7.3","karma-mocha":"2.0.1","karma-chai":"0.1.0","karma-jasmine":"4.0.2","karma-qunit":"4.2.1","@types/karma-chai":"0.1.6","@types/mocha":"10.0.7","@types/jasmine":"5.1.4","@types/qunit":"2.19.10","nyc":"17.0.0"}
|
|
@@ -74,10 +74,7 @@ class BasePackageManager {
|
|
|
74
74
|
return __awaiter(this, void 0, void 0, function* () {
|
|
75
75
|
const npmExecutable = this.getPackageManagerExecutableName();
|
|
76
76
|
const stdioValue = (0, helpers_1.isInteractive)() ? "inherit" : "pipe";
|
|
77
|
-
|
|
78
|
-
? (0, helpers_1.quoteString)(npmExecutable)
|
|
79
|
-
: npmExecutable;
|
|
80
|
-
yield this.$childProcess.spawnFromEvent(sanitizedNpmExecutable, params, "close", {
|
|
77
|
+
yield this.$childProcess.spawnFromEvent(npmExecutable, params, "close", {
|
|
81
78
|
cwd: opts.cwd,
|
|
82
79
|
stdio: stdioValue,
|
|
83
80
|
shell: this.$hostInfo.isWindows,
|
package/lib/commands/typings.js
CHANGED
|
@@ -73,7 +73,7 @@ class TypingsCommand {
|
|
|
73
73
|
return [];
|
|
74
74
|
}
|
|
75
75
|
const items = res.map((item) => {
|
|
76
|
-
const [group, artifact, version, sha1, file] = item.split(
|
|
76
|
+
const [group, artifact, version, sha1, file] = item.split(path.sep);
|
|
77
77
|
return {
|
|
78
78
|
id: sha1 + version,
|
|
79
79
|
group,
|
package/package.json
CHANGED