aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/pages.js
blob: 7609a07e911cf0d1f0862d04447d840411677771 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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: '/images/og-compiler' },
            'twitter:site': '@0xproject',
            'twitter:image': '/images/og-compiler',
        },
    },
    {
        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: '/images/og-cov' },
            'twitter:site': '@0xproject',
            'twitter:image': '/images/og-cov',
        },
    },
    {
        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: '/images/og-profiler' },
            'twitter:site': '@0xproject',
            'twitter:image': '/images/og-profiler',
        },
    },
    {
        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: '/images/og-trace' },
            'twitter:site': '@0xproject',
            'twitter:image': '/images/og-trace',
        },
    },
];

module.exports = pages;