create-react-styleguide
Advanced tools
Comparing version 8.0.0 to 8.1.0
const { join } = require('path'); | ||
const runParallel = require('run-parallel'); | ||
const runSeries = require('run-series'); | ||
@@ -24,3 +25,2 @@ const { spawn } = require('child_process'); | ||
const steps = [ | ||
cb => copyTemplate(distTemplateDirectory, distTargetDirectory, {}, cb), | ||
cb => build({ env: NODE_ENVIRONMENTS.DEV, format: MODULE_FORMATS.ESM, flags, cb }), | ||
@@ -38,3 +38,9 @@ ...(flags.includes('-w') | ||
]; | ||
runSeries(steps, callback); | ||
runSeries( | ||
[ | ||
cb => copyTemplate(distTemplateDirectory, distTargetDirectory, {}, cb), | ||
cb => runParallel(steps, cb), | ||
], | ||
callback | ||
); | ||
}; |
@@ -5,2 +5,9 @@ # Changelog | ||
## [8.1.0](https://github.com/zillow/create-react-styleguide/compare/v8.0.0...v8.1.0) (2022-02-03) | ||
### Features | ||
* run build tasks in parallel ([ddb49c8](https://github.com/zillow/create-react-styleguide/commit/ddb49c849d856090ce4f5f762c4b4e9b2687cfd0)) | ||
## [8.0.0](https://github.com/zillow/create-react-styleguide/compare/v7.1.0...v8.0.0) (2021-12-22) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "create-react-styleguide", | ||
"description": "A toolkit for creating React component libraries and style guides", | ||
"version": "8.0.0", | ||
"version": "8.1.0", | ||
"license": "ISC", | ||
@@ -6,0 +6,0 @@ "author": "Brian Stone <brians@zillowgroup.com>", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
86804
1423
6