build-api-docs.js 299 B

1234567891011121314151617
  1. #!/usr/bin/env node
  2. /**
  3. * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  4. * For licensing, see LICENSE.md.
  5. */
  6. /* eslint-env node */
  7. 'use strict';
  8. const buildApiDocs = require( './buildapi' );
  9. buildApiDocs()
  10. .catch( () => {
  11. process.exitCode = 1;
  12. } );