aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/pages.js
diff options
context:
space:
mode:
authorHsuan Lee <boczeratul@gmail.com>2019-03-06 17:46:50 +0800
committerHsuan Lee <boczeratul@gmail.com>2019-03-06 17:46:50 +0800
commit35703539d0f2b4ddb3b11d0de8c9634af59ab71f (patch)
treeae3731221dbbb3a6fa40060a8d916cfd3f738289 /packages/dev-tools-pages/pages.js
parent92a1fde5b1ecd81b07cdb5bf0c9c1cd3544799db (diff)
downloaddexon-0x-contracts-stable.tar
dexon-0x-contracts-stable.tar.gz
dexon-0x-contracts-stable.tar.bz2
dexon-0x-contracts-stable.tar.lz
dexon-0x-contracts-stable.tar.xz
dexon-0x-contracts-stable.tar.zst
dexon-0x-contracts-stable.zip
Deploy @dexon-foundation/0x.jsstable
Diffstat (limited to 'packages/dev-tools-pages/pages.js')
-rw-r--r--packages/dev-tools-pages/pages.js80
1 files changed, 0 insertions, 80 deletions
diff --git a/packages/dev-tools-pages/pages.js b/packages/dev-tools-pages/pages.js
deleted file mode 100644
index 62a022603..000000000
--- a/packages/dev-tools-pages/pages.js
+++ /dev/null
@@ -1,80 +0,0 @@
-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.png' },
- 'twitter:site': '@0xproject',
- 'twitter:image': '/images/og-compiler.png',
- },
- googleAnalyticsId: 'UA-98720122-4',
- heapAnalyticsId: '3772819976',
- },
- {
- title: 'sol-coverage',
- filename: 'coverage/index.html',
- template: 'assets/index.html',
- chunks: ['coverage'],
- favicon: 'assets/favicons/cov.ico',
- minify: true,
- meta: {
- description: 'Solidity code coverage',
- 'og-title': { property: 'og:title', content: 'sol-coverage' },
- '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.png' },
- 'twitter:site': '@0xproject',
- 'twitter:image': '/images/og-cov.png',
- },
- googleAnalyticsId: 'UA-98720122-3',
- heapAnalyticsId: '3386971671',
- },
- {
- 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.png' },
- 'twitter:site': '@0xproject',
- 'twitter:image': '/images/og-profiler.png',
- },
- googleAnalyticsId: 'UA-98720122-5',
- heapAnalyticsId: '3776009943',
- },
- {
- 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.png' },
- 'twitter:site': '@0xproject',
- 'twitter:image': '/images/og-trace.png',
- },
- googleAnalyticsId: 'UA-98720122-6',
- heapAnalyticsId: '4172106583',
- },
-];
-
-module.exports = pages;