diff options
author | Hsuan Lee <hsuan@cobinhood.com> | 2019-01-19 18:42:04 +0800 |
---|---|---|
committer | Hsuan Lee <hsuan@cobinhood.com> | 2019-01-19 18:42:04 +0800 |
commit | 7ae38906926dc09bc10670c361af0d2bf0050426 (patch) | |
tree | 5fb10ae366b987db09e4ddb4bc3ba0f75404ad08 /packages/dev-tools-pages/pages.js | |
parent | b5fd3c72a08aaa6957917d74c333387a16edf66b (diff) | |
download | dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.gz dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.bz2 dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.lz dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.xz dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.zst dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.zip |
Update dependency packages
Diffstat (limited to 'packages/dev-tools-pages/pages.js')
-rw-r--r-- | packages/dev-tools-pages/pages.js | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/packages/dev-tools-pages/pages.js b/packages/dev-tools-pages/pages.js deleted file mode 100644 index 488c2ecd7..000000000 --- a/packages/dev-tools-pages/pages.js +++ /dev/null @@ -1,72 +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', - }, - }, - { - 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', - }, - }, - { - 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', - }, - }, - { - 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', - }, - }, -]; - -module.exports = pages; |