mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-25 00:19:11 -05:00
2ab4ee8bf4
and var -> const in zunder-related files
18 lines
292 B
JavaScript
18 lines
292 B
JavaScript
const z = require('zunder')
|
|
const u = z.undertaker
|
|
const setZunderConfig = require('./set-zunder-config')
|
|
|
|
setZunderConfig(z)
|
|
|
|
u.series(
|
|
z.applyDevEnv,
|
|
z.cleanDev,
|
|
z.cleanTests,
|
|
u.parallel(
|
|
z.watchScripts,
|
|
z.watchTests,
|
|
z.watchStylesheets,
|
|
z.watchStaticAssets
|
|
)
|
|
)()
|