mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-11 01:29:59 -06:00
37 lines
907 B
JavaScript
37 lines
907 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
const resolvePkg = require('resolve-pkg')
|
|
const { join } = require('path')
|
|
const fs = require('fs-extra')
|
|
const path = require('path')
|
|
const childProcess = require('child_process')
|
|
|
|
const EXAMPLE_DIR = path.join(__dirname, '..')
|
|
|
|
async function build () {
|
|
await Promise.all([
|
|
fs.remove(path.join(EXAMPLE_DIR, 'app')),
|
|
fs.remove(path.join(EXAMPLE_DIR, 'cypress')),
|
|
])
|
|
|
|
await Promise.all([
|
|
fs.copy(join(resolvePkg('cypress-example-kitchensink'), 'app'), path.join(EXAMPLE_DIR, 'app')),
|
|
fs.copy(join(resolvePkg('cypress-example-kitchensink'), 'cypress'), path.join(EXAMPLE_DIR, 'cypress')),
|
|
])
|
|
|
|
childProcess.execSync('node ./bin/convert.js', {
|
|
cwd: EXAMPLE_DIR,
|
|
stdio: 'inherit',
|
|
})
|
|
}
|
|
|
|
build().then(() => {
|
|
console.log('Built example')
|
|
process.exit(0)
|
|
}).catch((e) => {
|
|
console.error(e.stack)
|
|
process.exit(1)
|
|
})
|