New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-react-styleguide

Package Overview
Dependencies
Maintainers
3
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-react-styleguide - npm Package Compare versions

Comparing version 8.0.0 to 8.1.0

10

bin/commands/scripts/build.js
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 @@

2

package.json
{
"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>",

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