aboutsummaryrefslogblamecommitdiffstats
path: root/packages/dev-tools-pages/pages.js
blob: 5819040681e66d5a470e8f69110786fe4f0d4690 (plain) (tree)







































































                                                                                                              
const pages = [
    {
        title: 'sol-compiler',
        filename: 'compiler/index.html',
        template: 'assets/index.html',
        chunks: ['compiler'],
        favicon: 'assets/favicons/compiler.ico',
        minify: true,
        meta: {
            description: 'Solidity compilation that just works',
            'og-title': { property: 'og:title', content: 'sol-compiler' },
            'og-description': { property: 'og:description', content: 'Solidity compilation that just works' },
            'og-type': { property: 'og:type', content: 'website' },
            'og-image': { property: 'og:image', content: '' },
            'twitter:site': '@0xproject',
            'twitter:image': '',
        },
    },
    {
        title: 'sol-cov',
        filename: 'cov/index.html',
        template: 'assets/index.html',
        chunks: ['cov'],
        favicon: 'assets/favicons/cov.ico',
        minify: true,
        meta: {
            description: 'Solidity code coverage',
            'og-title': { property: 'og:title', content: 'sol-cov' },
            'og-description': { property: 'og:description', content: 'Solidity code coverage' },
            'og-type': { property: 'og:type', content: 'website' },
            'og-image': { property: 'og:image', content: '' },
            'twitter:site': '@0xproject',
            'twitter:image': '',
        },
    },
    {
        title: 'sol-profiler',
        filename: 'profiler/index.html',
        template: 'assets/index.html',
        chunks: ['profiler'],
        favicon: 'assets/favicons/profiler.ico',
        minify: true,
        meta: {
            description: 'Gas profiling for Solidity',
            'og-title': { property: 'og:title', content: 'sol-profiler' },
            'og-description': { property: 'og:description', content: 'Gas profiling for Solidity' },
            'og-type': { property: 'og:type', content: 'website' },
            'og-image': { property: 'og:image', content: '' },
            'twitter:site': '@0xproject',
            'twitter:image': '',
        },
    },
    {
        title: 'sol-trace',
        filename: 'trace/index.html',
        template: 'assets/index.html',
        chunks: ['trace'],
        favicon: 'assets/favicons/trace.ico',
        minify: true,
        meta: {
            description: 'Human-readable stack traces',
            'og-title': { property: 'og:title', content: 'sol-trace' },
            'og-description': { property: 'og:description', content: 'Human-readable stack traces' },
            'og-type': { property: 'og:type', content: 'website' },
            'og-image': { property: 'og:image', content: '' },
            'twitter:site': '@0xproject',
            'twitter:image': '',
        },
    },
];

module.exports = pages;