@ngx-rocket/scripts
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -1,2 +0,2 @@ | ||
# 1.0.4 | ||
# 1.0.5 | ||
- Fixed extra resources copy on OS X/Linux (https://github.com/ngx-rocket/generator-ngx-rocket/issues/137) | ||
@@ -3,0 +3,0 @@ |
@@ -19,3 +19,3 @@ #!/usr/bin/env node | ||
function copyAndroidResources() { | ||
const command = `${isWin ? 'xcopy /S /Y /I' : 'cp -Rfv'} "${path.join(inputPath, '.')}" "${androidResourcesPath}"`; | ||
const command = `${isWin ? 'xcopy /S /Y /I' : 'cp -Rfv'} "${inputPath + path.sep}." "${androidResourcesPath}"`; | ||
process.stdout.write(`Copying Android native resources with command: ${command}\n`); | ||
@@ -22,0 +22,0 @@ execSync(command, {stdio: 'inherit'}); |
{ | ||
"name": "@ngx-rocket/scripts", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Support scripts for ngX-Rocket projects", | ||
@@ -5,0 +5,0 @@ "repository": "ngx-rocket/scripts", |
15166