UNPKG

generator-nitro

Version:

Yeoman generator for the nitro frontend framework

123 lines (119 loc) 2.46 kB
'use strict'; /** * Nitro Exporter Config */ const config = { exporter: [ { dest: 'export', i18n: [<% if (options.themes) { %>'default', 'dark'<% } %>], publics: ['public/*', 'public/assets/**/*', 'public/content/**/*'], renames: [ { src: 'export/assets/**', base: 'export/assets', dest: 'export/', }, ], replacements: [ { glob: ['export/*.html'], replace: [ { from: '/assets/', to: '', }, { from: '/content/', to: 'content/', }, { from: ' href="/?([a-z0-9-]+)"', to: ' href="$1.html"', }, ], }, { glob: ['export/<% if (options.themes) { %>*/<% } %>css/*.css'], replace: [ { from: '/assets/<% if (options.themes) { %>(light|dark)/<% } %>', to: '../', }, { from: '/content/', to: '../content/', }, ], }, { glob: ['export/<% if (options.themes) { %>*/<% } %>js/*.js'], replace: [ { from: '/assets/', to: '', }, { from: '/api', to: 'api', }, ], },<% if (options.themes) { %> { glob: ['export/*-dark.html'], replace: [ { from: ' href="([a-z0-9-]+).html"', to: ' href="$1-dark.html"', }, { from: 'light/', to: 'dark/', }, ], }, { glob: ['export/index-dark.html'], replace: [ { from: '<ul><li><span>Light.*</li></ul>', to: '<ul><li><a href="index.html">Light Theme</a></li><li><span>Dark Theme (current)</span></li></ul>', }, ], }, { glob: ['export/index.html'], replace: [ { from: '/theme/dark', to: 'index-dark.html', }, ], }, { glob: ['export/light/js/ui.min.js'], replace: [ { from: 'uri:"index"', to: 'uri:"index.html"', }, ], }, { glob: ['export/dark/js/ui.min.js'], replace: [ { from: 'uri:"index"', to: 'uri:"index-dark.html"', }, ], },<% } %> ], views: true, additionalRoutes: [<% if (options.exampleCode) { %>'api/lottie/shipment.json', 'api/lottie/bouncing.json'<% } %>], minifyHtml: true, zip: false, }, ], }; module.exports = config.exporter;