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

nativescript-theme-core

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-theme-core - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "nativescript-theme-core",
"version": "0.0.1",
"version": "0.0.2",
"description": "Telerik NativeScript Core Theme",

@@ -5,0 +5,0 @@ "author": "Telerik <support@telerik.com>",

@@ -75,11 +75,15 @@ /*************************************************************************************

function copyFolder(src, dest) {
try {
var files = fs.readdirSync(src);
files.forEach(function(file){
var curPath = src + "/" + file;
if(fs.lstatSync(curPath).isDirectory()) { // check to see if we need to recurse
copyFolder(curPath, dest + "/" + file);
} else { // copy file
copyFile(src, dest, file);
}
files.forEach(function (file) {
var curPath = src + "/" + file;
if (fs.lstatSync(curPath).isDirectory()) { // check to see if we need to recurse
copyFolder(curPath, dest + "/" + file);
} else { // copy file
copyFile(src, dest, file);
}
});
} catch (err) {
console.log('Skipping ' + src + ' copy.');
}
}

@@ -86,0 +90,0 @@

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