Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tailwind-config-viewer

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailwind-config-viewer - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

dist/js/app.41382bee.js

2

package.json
{
"name": "tailwind-config-viewer",
"version": "2.0.0",
"version": "2.0.1",
"description": "View your Tailwind CSS config file...visually!",

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

@@ -14,2 +14,3 @@ const Koa = require('koa')

}) {
console.log('CONFIG PROVIDER: ', tailwindConfigProvider)
const app = new Koa()

@@ -19,4 +20,5 @@

router.get('/config.json', (ctx) => {
ctx.body = resolveConfig(tailwindConfigProvider())
router.get('/config.json', async (ctx) => {
const config = await tailwindConfigProvider()
ctx.body = resolveConfig(config)
})

@@ -23,0 +25,0 @@

Sorry, the diff of this file is not supported yet

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