Files
tekelanew_acs/acs/nladmin-ui/node_modules/vue-jest/lib/compilers/stylus-compiler.js
2024-12-05 09:33:18 +08:00

9 lines
200 B
JavaScript

const stylus = require('stylus')
const path = require('path')
module.exports = (content, filePath, jestConfig) => stylus.render(
content, {
paths: [path.dirname(filePath), process.cwd()]
}
)