1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-09 09:35:02 +09:00
This commit is contained in:
Mike Mhlv 2024-02-27 15:55:46 +00:00
commit 529d0bc0d9
No known key found for this signature in database
GPG key ID: 82F8AC181346CE7F
52 changed files with 255 additions and 249 deletions

2
dist/.gitignore vendored
View file

@ -3,8 +3,6 @@ Anytype Setup*
anytypeHelper*
mac/*
.icon-ico/*
main.js
main.js.map
commands.js
bundle-back.js
anytypeHelper*

2
dist/index.html vendored
View file

@ -6,7 +6,7 @@
</head>
<body>
<div id="root"></div>
<script src="./run.js" type="text/javascript"></script>
<script src="./js/run.js" type="text/javascript"></script>
<!-- %REPLACE-JS% -->
</body>

4
dist/index.web.html vendored
View file

@ -17,11 +17,11 @@
};
</script>
<script src="./polyfill.js" type="text/javascript"></script>
<script src="./js/polyfill.js" type="text/javascript"></script>
</head>
<body onload="onload();">
<div id="root"></div>
<script src="./run.js" type="text/javascript"></script>
<script src="./js/run.js" type="text/javascript"></script>
<script type="text/javascript">
function onload () {
RendererEvents.init(null, {

2
dist/js/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
main.js
main.js.map

View file

@ -1,6 +1,6 @@
const s = document.createElement('script');
s.src = './main.js?' + Math.random();
s.src = './js/main.js?' + Math.random();
s.type = 'text/javascript';
document.body.appendChild(s);