mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-20 06:01:12 -06:00
11 lines
203 B
CoffeeScript
11 lines
203 B
CoffeeScript
send = require("send")
|
|
driver = require("@packages/driver")
|
|
|
|
module.exports = {
|
|
handle: (req, res) ->
|
|
pathToFile = driver.getPathToDist(req.params[0])
|
|
|
|
send(req, pathToFile)
|
|
.pipe(res)
|
|
}
|