logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/

copy_plugin.js (1001B)


  1. import serveStatic from 'serve-static'
  2. import { resolve } from 'node:path'
  3. import { cp } from 'node:fs/promises'
  4. const getPrefix = s => {
  5. const padEnd = s.endsWith('/') ? s : s + '/'
  6. return padEnd.startsWith('/') ? padEnd : '/' + padEnd
  7. }
  8. const copyPlugin = ({ inUrl, inFs }) => {
  9. const prefix = getPrefix(inUrl)
  10. const subdir = prefix.slice(1)
  11. let copyTarget
  12. const handler = serveStatic(inFs)
  13. return [{
  14. name: 'copy-plugin-serve',
  15. apply: 'serve',
  16. configureServer (server) {
  17. server.middlewares.use(prefix, handler)
  18. }
  19. }, {
  20. name: 'copy-plugin-build',
  21. apply: 'build',
  22. configResolved (config) {
  23. copyTarget = resolve(config.root, config.build.outDir, subdir)
  24. },
  25. closeBundle: {
  26. order: 'post',
  27. sequential: true,
  28. async handler () {
  29. console.log(`Copying '${inFs}' to ${copyTarget}...`)
  30. await cp(inFs, copyTarget, { recursive: true })
  31. console.log('Done.')
  32. }
  33. }
  34. }]
  35. }
  36. export default copyPlugin