aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/pages.js
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2019-01-10 18:51:13 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2019-01-10 18:56:15 +0800
commitcee29542451d3bf8c99bd08963a2108768072195 (patch)
treef3d657be53459ce3851fcf9632bd94f32ee80184 /packages/dev-tools-pages/pages.js
parenta8d9263062e586b90ee4c303d3d3aca72e428edc (diff)
parent686f27a96f0cd749f6315d7edd2bb56cf1819245 (diff)
downloaddexon-0x-contracts-cee29542451d3bf8c99bd08963a2108768072195.tar
dexon-0x-contracts-cee29542451d3bf8c99bd08963a2108768072195.tar.gz
dexon-0x-contracts-cee29542451d3bf8c99bd08963a2108768072195.tar.bz2
dexon-0x-contracts-cee29542451d3bf8c99bd08963a2108768072195.tar.lz
dexon-0x-contracts-cee29542451d3bf8c99bd08963a2108768072195.tar.xz
dexon-0x-contracts-cee29542451d3bf8c99bd08963a2108768072195.tar.zst
dexon-0x-contracts-cee29542451d3bf8c99bd08963a2108768072195.zip
Merge development
Diffstat (limited to 'packages/dev-tools-pages/pages.js')
-rw-r--r--packages/dev-tools-pages/pages.js72
1 files changed, 72 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/pages.js b/packages/dev-tools-pages/pages.js
new file mode 100644
index 000000000..7609a07e9
--- /dev/null
+++ b/packages/dev-tools-pages/pages.js
@@ -0,0 +1,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;