first release

This commit is contained in:
Will Abbott 2024-06-08 14:33:11 +01:00
parent c38c990b5b
commit 4c4d00d4df
2269 changed files with 323498 additions and 2 deletions

15
docs/docs_project/node_modules/postcss-js/async.js generated vendored Normal file
View file

@ -0,0 +1,15 @@
let postcss = require('postcss')
let processResult = require('./process-result')
let parse = require('./parser')
module.exports = function async(plugins) {
let processor = postcss(plugins)
return async input => {
let result = await processor.process(input, {
parser: parse,
from: undefined
})
return processResult(result)
}
}