UNPKG

minidev

Version:

支付宝小程序开发 cli(minidev)提供了常用的支付宝系小程序开发指令,能够方便地在各类平台上快速进行小程序的开发、预览、上传等操作。

31 lines (28 loc) 1.59 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <style> body { background: transparent; } </style> </head> <body style="margin: 0px; max-width: 100vw;"> <div style="width: 100%; height: 100%; box-sizing: border-box; text-align: center; background-color: white;"> <div style="position: relative; display: inline-flex; flex-direction: column; height: 100%; width: 1024px; max-width: 100%; overflow: hidden auto; padding: 0.5rem; box-sizing: border-box; text-align: left; font-family: Consolas, Menlo, monospace; font-size: 11px; word-break: break-word; line-height: 1.5; color: black;"> <div style="font-size: 2em; font-family: sans-serif; color: rgb(206, 17, 38); margin: 0px 2rem 0.75rem 0px; flex: 0 0 auto; max-height: 50%; overflow: auto;">Failed to compile</div> <div> <!-- 不要换行,会影响pre输出 --> <pre style="position: relative; display: block; padding: 0.5em; margin-top: 0.5em; margin-bottom: 0.5em; overflow-x: auto; white-space: pre-wrap; border-radius: 0.25rem; background-color: rgba(206, 17, 38, 0.05); color: inherit;"><code style="font-family: Consolas, Menlo, monospace;"><span data-ansi-line="true"><span id="j_errContent"><%- error %></span></span></code></pre> </div> </div> </div> <script> var errContent = document.getElementById('j_errContent').innerText; errContent && console.error(errContent); </script> </body> </html>