arrow-objectmodel
Advanced tools
Comparing version 0.3.1-1 to 0.3.1-6
{ | ||
"name": "arrow-objectmodel", | ||
"version": "0.3.1-1", | ||
"version": "0.3.1-6", | ||
"description": "The object model for Arrow", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
const { spawnSync } = require('child_process'); | ||
const path = require('path'); | ||
const fs = require('fs'); | ||
const mkdirSync = require('mkdirp').sync; | ||
const pkg = require('../package.json'); | ||
@@ -12,4 +13,6 @@ | ||
if (!fs.existsSync(destFolder)) { | ||
fs.mkdirSync(destFolder); | ||
// May be a scoped package folder | ||
const targetDir = path.dirname(target); | ||
if (!fs.existsSync(path.dirname(targetDir))) { | ||
mkdirSync(targetDir); | ||
} | ||
@@ -16,0 +19,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20794
526