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

@atelier-wb/vite-plugin-svelte

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atelier-wb/vite-plugin-svelte - npm Package Compare versions

Comparing version 0.2.0-alpha.0 to 0.2.0-alpha.1

2

package.json
{
"name": "@atelier-wb/vite-plugin-svelte",
"version": "0.2.0-alpha.0",
"version": "0.2.0-alpha.1",
"description": "Vite plugin to process your svelte components",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -18,3 +18,4 @@ const { resolve } = require('path')

workframeId: { type: 'string' },
setupPath: { type: 'string', nullable: true }
setupPath: { type: 'string', nullable: true },
publicDirs: { type: 'array', items: { type: 'string' } }
},

@@ -31,3 +32,4 @@ required: ['path', 'url', 'toolRegexp', 'workframeHtml', 'workframeId'],

workframeId: '@atelier-wb/workframe',
bundled: true
bundled: true,
publicDirs: []
}

@@ -92,3 +94,3 @@

}
const serve = sirv(uiPath, { etag: true })
const serves = [uiPath, ...options.publicDirs].map(dir => sirv(dir, { etag: true }))

@@ -111,3 +113,11 @@ // configure a middleware for serving Atelier

// all other static Atelier assets
serve(req, res, next)
let i = 0
const tryNext = () => {
if (serves[i]) {
serves[i++](req, res, tryNext)
} else {
next()
}
}
tryNext()
}

@@ -114,0 +124,0 @@ })

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