tailwind-config-viewer
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1312026
1103