mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-04 22:30:00 -06:00
* docs: set full url to staging * docs: test after deploy * add dot missing in deploy regular expression * increase docs start timeout * docs: catch missing css/cypress.css and js/toc.js after deploy * docs: generate single application.js on staging * docs: test for magic variable to detect missing js * docs: test search drop down on intro page * docs: add e2e test to catch missing sidebar * docs: split build * docs: run build file save * docs: ls public before generating build.json * docs: generate docs in debug mode * setup custom linting rules inside themes/cypress/source to keep them ES5 * more eslint wrangling
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
process.on('unhandledRejection', function (reason, p) {
|
|
/* eslint-disable no-console */
|
|
console.error('Unhandled Rejection at: Promise ', p)
|
|
console.error('reason: ', reason)
|
|
process.exit(-1)
|
|
});
|
|
|
|
require('hexo-cli')();
|