@sprucelabs/babel-plugin-schema
Advanced tools
Comparing version 1.1.6 to 1.1.7
@@ -76,3 +76,3 @@ "use strict"; | ||
static async copyDir(source, destination) { | ||
fs_extra_1.default.ensureDir(destination); | ||
await fs_extra_1.default.ensureDir(destination); | ||
return new Promise((resolve) => { | ||
@@ -79,0 +79,0 @@ child_process_1.exec(`cd ${source} && tar cf - . | (cd ${destination}; tar xf -)`, { maxBuffer: 1024 * 1024 * 5 }, (err, stdout) => { |
@@ -0,1 +1,8 @@ | ||
## [1.1.7](https://github.com/sprucelabsai/babel-plugin-schema/compare/v1.1.6...v1.1.7) (2020-08-14) | ||
### Bug Fixes | ||
* wait for the directory to exist ([f410de1](https://github.com/sprucelabsai/babel-plugin-schema/commit/f410de1)) | ||
## [1.1.6](https://github.com/sprucelabsai/babel-plugin-schema/compare/v1.1.5...v1.1.6) (2020-08-14) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@sprucelabs/babel-plugin-schema", | ||
"version": "1.1.6", | ||
"version": "1.1.7", | ||
"description": "Builds @sprucelabs/schema and generates static paths to #spruce directories.", | ||
@@ -32,3 +32,3 @@ "main": "build/index.js", | ||
"@sprucelabs/semantic-release": "^4.0.5", | ||
"@sprucelabs/test": "^6.0.3", | ||
"@sprucelabs/test": "^6.0.6", | ||
"@types/fs-extra": "^9.0.1", | ||
@@ -39,4 +39,4 @@ "@types/rimraf": "^3.0.0", | ||
"copyfiles": "^2.3.0", | ||
"eslint": "^7.6.0", | ||
"eslint-config-spruce": "^10.8.9", | ||
"eslint": "^7.7.0", | ||
"eslint-config-spruce": "^10.8.10", | ||
"jest": "^26.3.0", | ||
@@ -43,0 +43,0 @@ "prettier": "^2.0.5", |
@@ -83,3 +83,3 @@ import { exec } from 'child_process' | ||
private static async copyDir(source: string, destination: string) { | ||
fsUtil.ensureDir(destination) | ||
await fsUtil.ensureDir(destination) | ||
return new Promise((resolve) => { | ||
@@ -86,0 +86,0 @@ exec( |
Sorry, the diff of this file is not supported yet
40477