Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-dev-android-snapshot

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-dev-android-snapshot - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

7

hooks/after-prepare-hook.js

@@ -7,3 +7,8 @@ var path = require("path");

function addSnapshotKeyInPackageJSON(appPackageJSONPath) {
var appPackageJSON = JSON.parse(fs.readFileSync(appPackageJSONPath, 'utf8'));
var appPackageJSON;
if (!shelljs.test("-e", appPackageJSONPath)) {
appPackageJSON = {};
} else {
appPackageJSON = JSON.parse(fs.readFileSync(appPackageJSONPath, 'utf8'));
}

@@ -10,0 +15,0 @@ appPackageJSON["android"] = appPackageJSON["android"] || {};

2

package.json
{
"name": "nativescript-dev-android-snapshot",
"version": "0.0.1",
"version": "0.0.2",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "dependencies": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc