* refactor(wip): separate components files into zips and assets dir * refactor(wip): use new components package and cdn in mobile * chore: add components to metro config * chore: bump snjs with new web assets path * refactor: exclude package.json files recursively from being copied into components dist folder to avoid conflicts with react native duplicates
24 lines
609 B
HTML
24 lines
609 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base target="_blank">
|
|
<meta charset="UTF-8">
|
|
|
|
<script src="dist/dist.js"></script>
|
|
|
|
<script src="dist/sn-codemirror-search/search.js"></script>
|
|
<script src="dist/sn-codemirror-search/searchcursor.js"></script>
|
|
<script src="dist/sn-codemirror-search/dialog/dialog.js"></script>
|
|
|
|
<link rel="stylesheet" media="all" href="dist/dist.css">
|
|
<link rel="stylesheet" media="all" href="dist/sn-codemirror-search/dialog/dialog.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="wrapper">
|
|
<textarea id="code" name="code"></textarea>
|
|
<div>
|
|
|
|
</body>
|
|
</html>
|