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

storybook-nuxt

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

storybook-nuxt - npm Package Compare versions

Comparing version 0.0.6-rc.5 to 0.0.6-rc.6

3

index.js

@@ -15,2 +15,5 @@ #!/usr/bin/env node

.option('-s, --start', 'Start Storybook after initialization')
.option('-p, --port <port>', 'Port to run Storybook on', 6006)
.option('-c, --ci', 'Run in CI mode') // avoid interactive prompts and browser opening
.argument('[port]', 'Port to run Storybook on', 6006)
.action((options) => {

@@ -17,0 +20,0 @@ // ... perform the initialization ...

7

init.js

@@ -21,3 +21,3 @@ #!/usr/bin/env node

function initStorybook(start = false) {
function initStorybook(start = false, port = 6006, ci = true) {
logger.log(`${STARTMARK} Initializing Storybook configuration...`)

@@ -94,3 +94,3 @@ logger.log()

if (start) {
const startProcess = spawn(packageManager, ['storybook', 'dev'], {
const startProcess = spawn(packageManager, ['storybook', 'dev', '--port', port, '--ci'], {
cwd: projectRoot,

@@ -212,5 +212,2 @@ stdio: 'inherit',

const packageJsonPath = path.join(frameworkPackageName, 'package.json')
console.log({ frameworkPackageName })
const errors = []

@@ -217,0 +214,0 @@

{
"name": "storybook-nuxt",
"version": "0.0.6-rc.5",
"version": "0.0.6-rc.6",
"description": "Storybook init CLI for Nuxt ",

@@ -5,0 +5,0 @@ "author": "Chakas@",

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