vue.test.ts — tailwindcss Source File
Architecture documentation for vue.test.ts, a typescript file in the tailwindcss codebase. 4 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 24b9ff7a_e4dc_9351_63ea_94e9aaef61ac["vue.test.ts"] 9ffd1dda_9675_c514_373d_0f4ab4648249["utils.ts"] 24b9ff7a_e4dc_9351_63ea_94e9aaef61ac --> 9ffd1dda_9675_c514_373d_0f4ab4648249 b7531519_9055_fbfa_5f69_ebc8586b0422["candidate"] 24b9ff7a_e4dc_9351_63ea_94e9aaef61ac --> b7531519_9055_fbfa_5f69_ebc8586b0422 f11e3be9_51f8_140b_68b0_f58ddd082595["test"] 24b9ff7a_e4dc_9351_63ea_94e9aaef61ac --> f11e3be9_51f8_140b_68b0_f58ddd082595 041a5d56_b2a1_1fbe_eb9b_b605f45324db["node:util"] 24b9ff7a_e4dc_9351_63ea_94e9aaef61ac --> 041a5d56_b2a1_1fbe_eb9b_b605f45324db style 24b9ff7a_e4dc_9351_63ea_94e9aaef61ac fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { stripVTControlCharacters } from 'node:util'
import { candidate, html, json, test, ts } from '../utils'
test(
'production build',
{
fs: {
'package.json': json`
{
"type": "module",
"dependencies": {
"vue": "^3.4.37",
"tailwindcss": "workspace:^"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.2",
"@tailwindcss/vite": "workspace:^",
"vite": "^7"
}
}
`,
'vite.config.ts': ts`
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [vue(), tailwindcss()],
})
`,
'index.html': html`
<!doctype html>
<html>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>
`,
'src/main.ts': ts`
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
`,
'src/App.vue': html`
<style>
@import 'tailwindcss';
.foo {
@apply text-red-500;
}
</style>
<style scoped>
@import 'tailwindcss' reference;
:deep(.bar) {
color: red;
}
</style>
<template>
<div class="underline foo bar">Hello Vue!</div>
// ... (87 more lines)
Domain
Source
Frequently Asked Questions
What does vue.test.ts do?
vue.test.ts is a source file in the tailwindcss codebase, written in typescript. It belongs to the OxideEngine domain.
What does vue.test.ts depend on?
vue.test.ts imports 4 module(s): candidate, node:util, test, utils.ts.
Where is vue.test.ts in the architecture?
vue.test.ts is located at integrations/vite/vue.test.ts (domain: OxideEngine, directory: integrations/vite).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free