Skip to content

Commit

Permalink
New version 0.0.11 Read more https://github.com/mappable-world/mappab…
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Sep 18, 2023
1 parent 53e8540 commit 7d06b1b
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 18 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mappable-world/mappable-cli",
"version": "0.0.10",
"version": "0.0.11",
"description": "Library for encapsulating the logic of autotests and building packages mappable.world js API",
"main": "dist/index.js",
"dependencies": {
Expand Down
13 changes: 12 additions & 1 deletion template/example/common.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
html, body, #app {
html,
body,
#app {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
font-family: Arial, sans-serif;
font-size: 16px;
}

.content {
width: 1024px;
margin: 0 auto;
}
38 changes: 24 additions & 14 deletions template/example/index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example %PACKAGE_NAME%</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./common.css" />
</head>
<body>
<iframe src="./vanilla.html" frameborder="0"></iframe>
<div class="content">%README%</div>
<div class="references">%REFERENCES%</div>
</body>
<head>
<title>Example %PACKAGE_NAME%</title>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./common.css" />
</head>
<body>
<iframe width="100%" height="500px" src="./vanilla.html" frameborder="0"></iframe>
<div class="content">%README%</div>
<div class="references">%REFERENCES%</div>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/atom-one-dark.min.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
<script>
hljs.highlightAll();
</script>
</body>
</html>

0 comments on commit 7d06b1b

Please sign in to comment.